Guidance commitments
curl --request GET \
--url https://www.prometheus.services/api/v1/companies/{id}/earnings/promises \
--header 'X-API-KEY: <api-key>'import requests
url = "https://www.prometheus.services/api/v1/companies/{id}/earnings/promises"
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/companies/{id}/earnings/promises', 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/companies/{id}/earnings/promises",
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/companies/{id}/earnings/promises"
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/companies/{id}/earnings/promises")
.header("X-API-KEY", "<api-key>")
.asString();require 'uri'
require 'net/http'
url = URI("https://www.prometheus.services/api/v1/companies/{id}/earnings/promises")
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{
"ticker": "NVDA",
"cik": "0001045810",
"callDate": "2026-05-20",
"fiscalYear": 2027,
"fiscalQuarter": 1,
"calls": [
{
"documentId": 1,
"externalId": "31919",
"label": "call",
"segmentCount": 32,
"fiscalYear": 2027,
"fiscalQuarter": 1
}
],
"buckets": {
"dueNext": [
{
"observationId": 2826,
"quote": "analysts now forecasting hyperscale CapEx to exceed $1 trillion in 2027",
"speaker": "Colette Kress",
"section": "prepared",
"conceptLabel": "hyperscale CapEx forecast",
"value": 1,
"valueLow": null,
"valueHigh": null,
"unit": "usd_trillions",
"isNumeric": true,
"callDate": "2026-05-20",
"externalId": "31919",
"callLabel": null,
"periodRaw": "in 2027",
"bucket": "dueNext",
"checksAgainst": "next release / 10-Q"
}
],
"carveOut": [],
"conditional": [],
"longDated": [
{
"observationId": 2828,
"quote": "AI infrastructure spending is on track to reach $3 trillion to $4 trillion annua…",
"speaker": "Colette Kress",
"section": "prepared",
"conceptLabel": "AI infrastructure spending forecast",
"value": 3,
"valueLow": null,
"valueHigh": null,
"unit": "usd_trillions",
"isNumeric": true,
"callDate": "2026-05-20",
"externalId": "31919",
"callLabel": null,
"periodRaw": "by the end of this decade",
"bucket": "longDated",
"checksAgainst": "future filings"
}
],
"qualitative": [
{
"observationId": 2728,
"quote": "The webcast will be available for replay until the conference call to discuss ou…",
"speaker": "Toshiya Hari",
"section": "prepared",
"conceptLabel": "webcast replay availability",
"value": null,
"valueLow": null,
"valueHigh": null,
"unit": null,
"isNumeric": false,
"callDate": "2026-05-20",
"externalId": "31919",
"callLabel": null,
"periodRaw": "until the conference call to discuss our financial results for the second quarte…",
"bucket": "qualitative",
"checksAgainst": "FY27 10-K"
}
]
},
"resolvedLastPrint": [
{
"observationId": 3637,
"stdKey": "gross_margin",
"targetPeriodEnd": "2026-04-30",
"guidedLow": 74.4,
"guidedHigh": 75.4,
"guidedUnit": "percent",
"realizedValue": 74.9335,
"withinRange": true,
"midpointErrorRel": 0.000447,
"speakerName": "Colette Kress",
"quote": "GAAP and non-GAAP gross margins are expected to be 74.9% and 75%, respectively, …",
"externalId": "20595"
}
],
"summary": {
"verifiedCount": 527,
"issuerCount": 10,
"lastAuditNote": "audit #5 · 2026-08-01 · 63/63 individually verified"
}
}{
"error": "<string>",
"code": "unauthenticated"
}{
"error": "<string>",
"code": "unauthenticated"
}{
"error": "<string>",
"code": "unauthenticated"
}{
"error": "<string>",
"code": "unauthenticated"
}Guidance & Scorecards
Guidance commitments
Management guidance commitments extracted from earnings calls.
GET
/
api
/
v1
/
companies
/
{id}
/
earnings
/
promises
Guidance commitments
curl --request GET \
--url https://www.prometheus.services/api/v1/companies/{id}/earnings/promises \
--header 'X-API-KEY: <api-key>'import requests
url = "https://www.prometheus.services/api/v1/companies/{id}/earnings/promises"
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/companies/{id}/earnings/promises', 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/companies/{id}/earnings/promises",
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/companies/{id}/earnings/promises"
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/companies/{id}/earnings/promises")
.header("X-API-KEY", "<api-key>")
.asString();require 'uri'
require 'net/http'
url = URI("https://www.prometheus.services/api/v1/companies/{id}/earnings/promises")
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{
"ticker": "NVDA",
"cik": "0001045810",
"callDate": "2026-05-20",
"fiscalYear": 2027,
"fiscalQuarter": 1,
"calls": [
{
"documentId": 1,
"externalId": "31919",
"label": "call",
"segmentCount": 32,
"fiscalYear": 2027,
"fiscalQuarter": 1
}
],
"buckets": {
"dueNext": [
{
"observationId": 2826,
"quote": "analysts now forecasting hyperscale CapEx to exceed $1 trillion in 2027",
"speaker": "Colette Kress",
"section": "prepared",
"conceptLabel": "hyperscale CapEx forecast",
"value": 1,
"valueLow": null,
"valueHigh": null,
"unit": "usd_trillions",
"isNumeric": true,
"callDate": "2026-05-20",
"externalId": "31919",
"callLabel": null,
"periodRaw": "in 2027",
"bucket": "dueNext",
"checksAgainst": "next release / 10-Q"
}
],
"carveOut": [],
"conditional": [],
"longDated": [
{
"observationId": 2828,
"quote": "AI infrastructure spending is on track to reach $3 trillion to $4 trillion annua…",
"speaker": "Colette Kress",
"section": "prepared",
"conceptLabel": "AI infrastructure spending forecast",
"value": 3,
"valueLow": null,
"valueHigh": null,
"unit": "usd_trillions",
"isNumeric": true,
"callDate": "2026-05-20",
"externalId": "31919",
"callLabel": null,
"periodRaw": "by the end of this decade",
"bucket": "longDated",
"checksAgainst": "future filings"
}
],
"qualitative": [
{
"observationId": 2728,
"quote": "The webcast will be available for replay until the conference call to discuss ou…",
"speaker": "Toshiya Hari",
"section": "prepared",
"conceptLabel": "webcast replay availability",
"value": null,
"valueLow": null,
"valueHigh": null,
"unit": null,
"isNumeric": false,
"callDate": "2026-05-20",
"externalId": "31919",
"callLabel": null,
"periodRaw": "until the conference call to discuss our financial results for the second quarte…",
"bucket": "qualitative",
"checksAgainst": "FY27 10-K"
}
]
},
"resolvedLastPrint": [
{
"observationId": 3637,
"stdKey": "gross_margin",
"targetPeriodEnd": "2026-04-30",
"guidedLow": 74.4,
"guidedHigh": 75.4,
"guidedUnit": "percent",
"realizedValue": 74.9335,
"withinRange": true,
"midpointErrorRel": 0.000447,
"speakerName": "Colette Kress",
"quote": "GAAP and non-GAAP gross margins are expected to be 74.9% and 75%, respectively, …",
"externalId": "20595"
}
],
"summary": {
"verifiedCount": 527,
"issuerCount": 10,
"lastAuditNote": "audit #5 · 2026-08-01 · 63/63 individually verified"
}
}{
"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_....
Path Parameters
Ticker symbol (e.g. NVDA) or numeric SEC CIK (zero-padding optional).
Response
OK
The response is of type object.
⌘I