Narrative pulse
curl --request GET \
--url https://www.prometheus.services/api/v1/intelligence/pulse \
--header 'X-API-KEY: <api-key>'import requests
url = "https://www.prometheus.services/api/v1/intelligence/pulse"
headers = {"X-API-KEY": "<api-key>"}
response = requests.get(url, headers=headers)
print(response.text)const options = {method: 'GET', headers: {'X-API-KEY': '<api-key>'}};
fetch('https://www.prometheus.services/api/v1/intelligence/pulse', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));<?php
$curl = curl_init();
curl_setopt_array($curl, [
CURLOPT_URL => "https://www.prometheus.services/api/v1/intelligence/pulse",
CURLOPT_RETURNTRANSFER => true,
CURLOPT_ENCODING => "",
CURLOPT_MAXREDIRS => 10,
CURLOPT_TIMEOUT => 30,
CURLOPT_HTTP_VERSION => CURL_HTTP_VERSION_1_1,
CURLOPT_CUSTOMREQUEST => "GET",
CURLOPT_HTTPHEADER => [
"X-API-KEY: <api-key>"
],
]);
$response = curl_exec($curl);
$err = curl_error($curl);
curl_close($curl);
if ($err) {
echo "cURL Error #:" . $err;
} else {
echo $response;
}package main
import (
"fmt"
"net/http"
"io"
)
func main() {
url := "https://www.prometheus.services/api/v1/intelligence/pulse"
req, _ := http.NewRequest("GET", url, nil)
req.Header.Add("X-API-KEY", "<api-key>")
res, _ := http.DefaultClient.Do(req)
defer res.Body.Close()
body, _ := io.ReadAll(res.Body)
fmt.Println(string(body))
}HttpResponse<String> response = Unirest.get("https://www.prometheus.services/api/v1/intelligence/pulse")
.header("X-API-KEY", "<api-key>")
.asString();require 'uri'
require 'net/http'
url = URI("https://www.prometheus.services/api/v1/intelligence/pulse")
http = Net::HTTP.new(url.host, url.port)
http.use_ssl = true
request = Net::HTTP::Get.new(url)
request["X-API-KEY"] = '<api-key>'
response = http.request(request)
puts response.read_body{
"asOf": "2026-07-29",
"universe": {
"activeNarratives": 1843,
"issuers": 99,
"supportedObservations": 467560,
"claimEdges": 14
},
"items": [
{
"narrativeId": 173,
"name": "Financial Firms Investing in AI Capabilities",
"description": "Major financial services companies discussing their investments in artificial intelligence and gener…",
"lifecycleState": "accelerating",
"prevLifecycleState": "accelerating",
"breadth": 11,
"breadthPrevQuarter": 13,
"velocity": 48,
"acceleration": 50,
"volume28d": 48,
"netDirection": 0.8947,
"forwardShare": 0.44,
"sparkline": [
44,
51
],
"topQuote": {
"observationId": 627362,
"quote": "we're just going to continue to lean into using these tools to drive efficiency and effectiveness",
"statement": "Visa expects to continue using AI tools to drive efficiency and effectiveness.",
"speakerName": "Ryan McInerney",
"speakerRole": "executive",
"ticker": "V",
"companyName": "Visa Inc.",
"observedAt": "2026-07-28",
"observationType": "guidance",
"direction": null,
"verificationStatus": "supported",
"documentId": 34599,
"transcriptExternalId": "248472",
"transcriptDate": "2026-07-28",
"fiscalLabel": "Q3 FY2026"
},
"rankScore": 78.4
},
{
"narrativeId": 962,
"name": "Wireless Service Revenue Growth Trends",
"description": "Tracks quarterly and annual wireless/mobility service revenue and EBITDA growth rates for major U.S.…",
"lifecycleState": "accelerating",
"prevLifecycleState": "accelerating",
"breadth": 7,
"breadthPrevQuarter": 6,
"velocity": 25,
"acceleration": 25,
"volume28d": 25,
"netDirection": 0.9286,
"forwardShare": 0.3214,
"sparkline": [
4,
12
],
"topQuote": {
"observationId": 495401,
"quote": "implies that the second half would suggest that we see positive revenue growth.",
"statement": "Verizon expects positive wireless service revenue growth in the second half of FY2026.",
"speakerName": "Anthony Skiadas",
"speakerRole": "executive",
"ticker": "VZ",
"companyName": "Verizon Communications Inc.",
"observedAt": "2026-07-24",
"observationType": "guidance",
"direction": "increasing",
"verificationStatus": "supported",
"documentId": 34593,
"transcriptExternalId": "248067",
"transcriptDate": "2026-07-24",
"fiscalLabel": "Q2 FY2026"
},
"rankScore": 46.25
}
],
"validatedStrip": [
{
"edgeId": "e-dccapex-power",
"label": "Data-Center Capex Acceleration → Power & Grid Constraints",
"scope": "power equipment & prime-power suppliers",
"verdict": "supported",
"method": "event_study",
"effectLabel": "+19% power-gen orders",
"lagLabel": "1Q lag",
"nEvents": 12,
"qValue": 0.02,
"testedAt": "2026-06-28"
},
{
"edgeId": "e-ai-dccapex",
"label": "Surging AI Compute Demand: Training & Inference → Data-Center Capex Acceleration",
"scope": "hyperscalers + AI infrastructure buyers",
"verdict": "supported",
"method": "event_study",
"effectLabel": "+38% capex growth YoY",
"lagLabel": "1Q lag",
"nEvents": 24,
"qValue": 0.001,
"testedAt": "2026-06-28"
}
]
}{
"error": "<string>",
"code": "unauthenticated"
}{
"error": "<string>",
"code": "unauthenticated"
}{
"error": "<string>",
"code": "unauthenticated"
}{
"error": "<string>",
"code": "unauthenticated"
}Intelligence
Narrative pulse
Narrative pulse for a set of tickers or a sector.
GET
/
api
/
v1
/
intelligence
/
pulse
Narrative pulse
curl --request GET \
--url https://www.prometheus.services/api/v1/intelligence/pulse \
--header 'X-API-KEY: <api-key>'import requests
url = "https://www.prometheus.services/api/v1/intelligence/pulse"
headers = {"X-API-KEY": "<api-key>"}
response = requests.get(url, headers=headers)
print(response.text)const options = {method: 'GET', headers: {'X-API-KEY': '<api-key>'}};
fetch('https://www.prometheus.services/api/v1/intelligence/pulse', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));<?php
$curl = curl_init();
curl_setopt_array($curl, [
CURLOPT_URL => "https://www.prometheus.services/api/v1/intelligence/pulse",
CURLOPT_RETURNTRANSFER => true,
CURLOPT_ENCODING => "",
CURLOPT_MAXREDIRS => 10,
CURLOPT_TIMEOUT => 30,
CURLOPT_HTTP_VERSION => CURL_HTTP_VERSION_1_1,
CURLOPT_CUSTOMREQUEST => "GET",
CURLOPT_HTTPHEADER => [
"X-API-KEY: <api-key>"
],
]);
$response = curl_exec($curl);
$err = curl_error($curl);
curl_close($curl);
if ($err) {
echo "cURL Error #:" . $err;
} else {
echo $response;
}package main
import (
"fmt"
"net/http"
"io"
)
func main() {
url := "https://www.prometheus.services/api/v1/intelligence/pulse"
req, _ := http.NewRequest("GET", url, nil)
req.Header.Add("X-API-KEY", "<api-key>")
res, _ := http.DefaultClient.Do(req)
defer res.Body.Close()
body, _ := io.ReadAll(res.Body)
fmt.Println(string(body))
}HttpResponse<String> response = Unirest.get("https://www.prometheus.services/api/v1/intelligence/pulse")
.header("X-API-KEY", "<api-key>")
.asString();require 'uri'
require 'net/http'
url = URI("https://www.prometheus.services/api/v1/intelligence/pulse")
http = Net::HTTP.new(url.host, url.port)
http.use_ssl = true
request = Net::HTTP::Get.new(url)
request["X-API-KEY"] = '<api-key>'
response = http.request(request)
puts response.read_body{
"asOf": "2026-07-29",
"universe": {
"activeNarratives": 1843,
"issuers": 99,
"supportedObservations": 467560,
"claimEdges": 14
},
"items": [
{
"narrativeId": 173,
"name": "Financial Firms Investing in AI Capabilities",
"description": "Major financial services companies discussing their investments in artificial intelligence and gener…",
"lifecycleState": "accelerating",
"prevLifecycleState": "accelerating",
"breadth": 11,
"breadthPrevQuarter": 13,
"velocity": 48,
"acceleration": 50,
"volume28d": 48,
"netDirection": 0.8947,
"forwardShare": 0.44,
"sparkline": [
44,
51
],
"topQuote": {
"observationId": 627362,
"quote": "we're just going to continue to lean into using these tools to drive efficiency and effectiveness",
"statement": "Visa expects to continue using AI tools to drive efficiency and effectiveness.",
"speakerName": "Ryan McInerney",
"speakerRole": "executive",
"ticker": "V",
"companyName": "Visa Inc.",
"observedAt": "2026-07-28",
"observationType": "guidance",
"direction": null,
"verificationStatus": "supported",
"documentId": 34599,
"transcriptExternalId": "248472",
"transcriptDate": "2026-07-28",
"fiscalLabel": "Q3 FY2026"
},
"rankScore": 78.4
},
{
"narrativeId": 962,
"name": "Wireless Service Revenue Growth Trends",
"description": "Tracks quarterly and annual wireless/mobility service revenue and EBITDA growth rates for major U.S.…",
"lifecycleState": "accelerating",
"prevLifecycleState": "accelerating",
"breadth": 7,
"breadthPrevQuarter": 6,
"velocity": 25,
"acceleration": 25,
"volume28d": 25,
"netDirection": 0.9286,
"forwardShare": 0.3214,
"sparkline": [
4,
12
],
"topQuote": {
"observationId": 495401,
"quote": "implies that the second half would suggest that we see positive revenue growth.",
"statement": "Verizon expects positive wireless service revenue growth in the second half of FY2026.",
"speakerName": "Anthony Skiadas",
"speakerRole": "executive",
"ticker": "VZ",
"companyName": "Verizon Communications Inc.",
"observedAt": "2026-07-24",
"observationType": "guidance",
"direction": "increasing",
"verificationStatus": "supported",
"documentId": 34593,
"transcriptExternalId": "248067",
"transcriptDate": "2026-07-24",
"fiscalLabel": "Q2 FY2026"
},
"rankScore": 46.25
}
],
"validatedStrip": [
{
"edgeId": "e-dccapex-power",
"label": "Data-Center Capex Acceleration → Power & Grid Constraints",
"scope": "power equipment & prime-power suppliers",
"verdict": "supported",
"method": "event_study",
"effectLabel": "+19% power-gen orders",
"lagLabel": "1Q lag",
"nEvents": 12,
"qValue": 0.02,
"testedAt": "2026-06-28"
},
{
"edgeId": "e-ai-dccapex",
"label": "Surging AI Compute Demand: Training & Inference → Data-Center Capex Acceleration",
"scope": "hyperscalers + AI infrastructure buyers",
"verdict": "supported",
"method": "event_study",
"effectLabel": "+38% capex growth YoY",
"lagLabel": "1Q lag",
"nEvents": 24,
"qValue": 0.001,
"testedAt": "2026-06-28"
}
]
}{
"error": "<string>",
"code": "unauthenticated"
}{
"error": "<string>",
"code": "unauthenticated"
}{
"error": "<string>",
"code": "unauthenticated"
}{
"error": "<string>",
"code": "unauthenticated"
}Authorizations
apiKeycognitoIdToken
Prometheus API key (pk_live_...), created on the Developers page in the terminal. Also accepted as Authorization: Bearer pk_live_....
Response
OK
The response is of type object.
⌘I