Company profile
curl --request GET \
--url https://www.prometheus.services/api/v1/companies/{id} \
--header 'X-API-KEY: <api-key>'import requests
url = "https://www.prometheus.services/api/v1/companies/{id}"
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}', 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}",
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}"
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}")
.header("X-API-KEY", "<api-key>")
.asString();require 'uri'
require 'net/http'
url = URI("https://www.prometheus.services/api/v1/companies/{id}")
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{
"company": {
"id": "69d1debf-37a7-4959-b4e5-6030b5ac1a84",
"name": "NVIDIA CORP",
"legal_name": "NVIDIA CORP",
"symbol": "NVDA",
"ticker": "NVDA",
"cik": "0001045810",
"country_code": "US",
"logoUrl": "/api/v1/companies/NVDA/logo",
"brandMark": "https://cdn.brandfetch.io/nvidia.com/icon?c=1idQJ_8ukVnXwK_PLYs&fallback=404",
"domain": "https://www.nvidia.com",
"secondary_offerings": [],
"subsidiaries": [],
"parent_registrant": null,
"lineage_events": [],
"price": 214.72,
"change": -2.13,
"changePercent": -0.982248,
"afterHoursPrice": 215.38,
"afterHoursChange": 0.660004,
"afterHoursChangePercent": 0.307379,
"prevClose": 216.85,
"open": 218.42,
"dayHigh": 218.74,
"dayLow": 214.5,
"marketCap": "$5.20T",
"marketCapFull": "5,200,733,011,968",
"volume": "91.59M",
"avgVolume": "141.32M",
"range52w": "164.07 – 236.54",
"sector": "Technology",
"industry": "Semiconductors",
"country": "US",
"exchange": "N/A",
"description": "NVIDIA Corporation operates as a data center scale AI infrastructure company in …",
"ipoDate": "Jan 22, 1999",
"ceo": "Jen-Hsun Huang",
"employees": "42,000",
"float": "23.23B shares",
"peRatio": 32.8821,
"dividendYield": 0.46,
"beta": 2.215,
"eps": 6.53,
"revenue": 81615000000,
"statistics": {
"fundamentalsAsOf": "2026-04-26",
"enterpriseValue": 5158868120000,
"sharesOutstanding": 24221000000,
"ttmRevenue": 253491000000,
"grossMargin": 74.1454,
"ebitdaMargin": 65.2938,
"operatingMargin": 64.02,
"preTaxMargin": 74.7336,
"netMargin": 62.9659,
"fcfMargin": 46.9744,
"roa": 61.5141,
"roe": 81.6543,
"roce": 75.2748,
"roic": 89.0126,
"peTtm": 32.8821,
"pb": 26.6058,
"evSales": 20.3513,
"evEbitda": 31.1688,
"pFcf": 43.6757,
"evGrossProfit": 27.4478,
"priceTarget": 304.1207,
"peNtm": 16.4823,
"peg": 0.5973,
"cash": 50335000000,
"netDebt": -41865000000,
"debtEquity": 0.0433,
"ebitInterest": 544.5805,
"revGrowthYoY": 70.6838,
"epsGrowthYoY": 109.9678,
"revCagr3y": 100.0451,
"epsCagr3y": 204.2395,
"payout": 0.6096,
"dps": 0.040207,
"calc": {
"peTtm": {
"formula": "Price ÷ EPS (TTM, diluted)",
"inputs": [
{
"label": "Price",
"value": 214.72,
"format": "price",
"qualifier": "primary listing; fresher of latest close vs live quote"
}
],
"note": "TTM = sum of the last 4 distinct fiscal quarters as known on the metric date (a …",
"asOf": "price as of 2026-08-21 · fundamentals through 2026-04-26"
},
"ev": {
"formula": "Market Cap + Total Debt − Cash & ST Investments",
"inputs": [
{
"label": "Market Cap",
"value": 5200733120000,
"format": "currency"
}
],
"note": "Balance-sheet figures are from the latest filed balance sheet (period end 2026-0…",
"asOf": "price as of 2026-08-21 · fundamentals through 2026-04-26"
},
"ttmRevenue": {
"formula": "Sum of the last 4 fiscal quarters' revenue",
"inputs": [
{
"label": "Revenue (TTM)",
"value": 253491000000,
"format": "currency"
}
],
"note": "TTM = sum of the last 4 distinct fiscal quarters as known on the metric date (a …",
"asOf": "price as of 2026-08-21 · fundamentals through 2026-04-26"
},
"grossMargin": {
"formula": "Gross Profit (TTM) ÷ Revenue (TTM)",
"inputs": [
{
"label": "Gross Profit (TTM)",
"value": 187952000000,
"format": "currency"
}
],
"note": "TTM = sum of the last 4 distinct fiscal quarters as known on the metric date (a …",
"asOf": "price as of 2026-08-21 · fundamentals through 2026-04-26"
},
"ebitdaMargin": {
"formula": "EBITDA (TTM) ÷ Revenue (TTM)",
"inputs": [
{
"label": "EBITDA (TTM)",
"value": 165514000000,
"format": "currency"
}
],
"note": "EBITDA = operating income + depreciation & amortization. TTM = sum of the last 4…",
"asOf": "price as of 2026-08-21 · fundamentals through 2026-04-26"
},
"operatingMargin": {
"formula": "Operating Income (TTM) ÷ Revenue (TTM)",
"inputs": [
{
"label": "Operating Income (TTM)",
"value": 162285000000,
"format": "currency"
}
],
"note": "TTM = sum of the last 4 distinct fiscal quarters as known on the metric date (a …",
"asOf": "price as of 2026-08-21 · fundamentals through 2026-04-26"
},
"preTaxMargin": {
"formula": "Pre-Tax Income (TTM) ÷ Revenue (TTM)",
"inputs": [
{
"label": "Pre-Tax Income (TTM)",
"value": 189443000000,
"format": "currency"
}
],
"note": "TTM = sum of the last 4 distinct fiscal quarters as known on the metric date (a …",
"asOf": "price as of 2026-08-21 · fundamentals through 2026-04-26"
},
"netMargin": {
"formula": "Net Income (TTM) ÷ Revenue (TTM)",
"inputs": [
{
"label": "Net Income (TTM)",
"value": 159613000000,
"format": "currency"
}
],
"note": "Net income attributable to shareholders (ties out to diluted EPS). TTM = sum of …",
"asOf": "price as of 2026-08-21 · fundamentals through 2026-04-26"
},
"fcfMargin": {
"formula": "Free Cash Flow (TTM) ÷ Revenue (TTM)",
"inputs": [
{
"label": "Free Cash Flow (TTM)",
"value": 119076000000,
"format": "currency"
}
],
"note": "FCF = operating cash flow − capital expenditures. TTM = sum of the last 4 distin…",
"asOf": "price as of 2026-08-21 · fundamentals through 2026-04-26"
},
"roa": {
"formula": "Net Income (TTM) ÷ Total Assets",
"inputs": [
{
"label": "Net Income (TTM)",
"value": 159613000000,
"format": "currency"
}
],
"note": "Balance-sheet figures are from the latest filed balance sheet (period end 2026-0…",
"asOf": "price as of 2026-08-21 · fundamentals through 2026-04-26"
},
"roe": {
"formula": "Net Income (TTM) ÷ Shareholders' Equity",
"inputs": [
{
"label": "Net Income (TTM)",
"value": 159613000000,
"format": "currency"
}
],
"note": "Balance-sheet figures are from the latest filed balance sheet (period end 2026-0…",
"asOf": "price as of 2026-08-21 · fundamentals through 2026-04-26"
},
"roce": {
"formula": "Operating Income (TTM) ÷ (Total Assets − Current Liabilities)",
"inputs": [
{
"label": "Operating Income (TTM)",
"value": 162285000000,
"format": "currency"
}
],
"note": "Balance-sheet figures are from the latest filed balance sheet (period end 2026-0…",
"asOf": "price as of 2026-08-21 · fundamentals through 2026-04-26"
},
"roic": {
"formula": "NOPAT ÷ (Total Debt + Equity − Cash & ST Inv)",
"inputs": [
{
"label": "Operating Income (TTM)",
"value": 162285000000,
"format": "currency",
"qualifier": "NOPAT before tax"
}
],
"note": "NOPAT = operating income × (1 − TTM effective tax rate, clamped to 0–50%); effec…",
"asOf": "price as of 2026-08-21 · fundamentals through 2026-04-26"
},
"pb": {
"formula": "Market Cap ÷ Shareholders' Equity",
"inputs": [
{
"label": "Market Cap",
"value": 5200733120000,
"format": "currency"
}
],
"note": "Balance-sheet figures are from the latest filed balance sheet (period end 2026-0…",
"asOf": "price as of 2026-08-21 · fundamentals through 2026-04-26"
},
"evSales": {
"formula": "Enterprise Value ÷ Revenue (TTM)",
"inputs": [
{
"label": "Enterprise Value",
"value": 5158868120000,
"format": "currency"
}
],
"note": "TTM = sum of the last 4 distinct fiscal quarters as known on the metric date (a …",
"asOf": "price as of 2026-08-21 · fundamentals through 2026-04-26"
},
"evEbitda": {
"formula": "Enterprise Value ÷ EBITDA (TTM)",
"inputs": [
{
"label": "Enterprise Value",
"value": 5158868120000,
"format": "currency"
}
],
"note": "EBITDA = operating income + depreciation & amortization. Shown only when EBITDA …",
"asOf": "price as of 2026-08-21 · fundamentals through 2026-04-26"
},
"pFcf": {
"formula": "Market Cap ÷ Free Cash Flow (TTM)",
"inputs": [
{
"label": "Market Cap",
"value": 5200733120000,
"format": "currency"
}
],
"note": "Shown only when FCF is positive. TTM = sum of the last 4 distinct fiscal quarter…",
"asOf": "price as of 2026-08-21 · fundamentals through 2026-04-26"
},
"evGrossProfit": {
"formula": "Enterprise Value ÷ Gross Profit (TTM)",
"inputs": [
{
"label": "Enterprise Value",
"value": 5158868120000,
"format": "currency"
}
],
"note": "TTM = sum of the last 4 distinct fiscal quarters as known on the metric date (a …",
"asOf": "price as of 2026-08-21 · fundamentals through 2026-04-26"
},
"cash": {
"formula": "Cash & Equivalents + Short-Term Investments",
"inputs": [
{
"label": "Cash & ST Investments",
"value": 50335000000,
"format": "currency"
}
],
"note": "Balance-sheet figures are from the latest filed balance sheet (period end 2026-0…",
"asOf": "price as of 2026-08-21 · fundamentals through 2026-04-26"
},
"netDebt": {
"formula": "Total Debt − Cash & ST Investments",
"inputs": [
{
"label": "Total Debt",
"value": 8470000000,
"format": "currency",
"qualifier": "long-term debt incl. current portion"
}
],
"note": "Balance-sheet figures are from the latest filed balance sheet (period end 2026-0…",
"asOf": "price as of 2026-08-21 · fundamentals through 2026-04-26"
},
"debtEquity": {
"formula": "Total Debt ÷ Shareholders' Equity",
"inputs": [
{
"label": "Total Debt",
"value": 8470000000,
"format": "currency"
}
],
"note": "Balance-sheet figures are from the latest filed balance sheet (period end 2026-0…",
"asOf": "price as of 2026-08-21 · fundamentals through 2026-04-26"
},
"ebitInterest": {
"formula": "Operating Income (TTM) ÷ Interest Expense (TTM)",
"inputs": [
{
"label": "Operating Income (TTM)",
"value": 162285000000,
"format": "currency"
}
],
"note": "Shown only when interest expense is positive. TTM = sum of the last 4 distinct f…",
"asOf": "price as of 2026-08-21 · fundamentals through 2026-04-26"
},
"revGrowthYoY": {
"formula": "(Revenue TTM − prior-year Revenue TTM) ÷ prior-year Revenue TTM",
"inputs": [
{
"label": "Revenue (TTM)",
"value": 253491000000,
"format": "currency"
}
],
"note": "TTM = sum of the last 4 distinct fiscal quarters as known on the metric date (a …",
"asOf": "price as of 2026-08-21 · fundamentals through 2026-04-26"
},
"epsGrowthYoY": {
"formula": "(EPS TTM − prior-year EPS TTM) ÷ prior-year EPS TTM",
"inputs": [
{
"label": "EPS (TTM)",
"value": 6.53,
"format": "per_share",
"qualifier": "diluted, split-adjusted"
}
],
"note": "TTM = sum of the last 4 distinct fiscal quarters as known on the metric date (a …",
"asOf": "price as of 2026-08-21 · fundamentals through 2026-04-26"
},
"revCagr3y": {
"formula": "(FY Revenue ÷ FY-3 Revenue)^(1/3) − 1",
"inputs": [],
"note": "Compound annual growth across the last 3 completed fiscal years, from as-filed a…",
"asOf": "price as of 2026-08-21 · fundamentals through 2026-04-26"
},
"epsCagr3y": {
"formula": "(FY diluted EPS ÷ FY-3 diluted EPS)^(1/3) − 1",
"inputs": [],
"note": "Compound annual growth across the last 3 completed fiscal years; each year's dil…",
"asOf": "price as of 2026-08-21 · fundamentals through 2026-04-26"
},
"payout": {
"formula": "Dividends Paid (TTM) ÷ Net Income (TTM)",
"inputs": [
{
"label": "Dividends Paid (TTM)",
"value": 973000848.0000001,
"format": "currency",
"qualifier": "cash dividends from the cash-flow statement (implied)"
}
],
"note": "Shown only when net income is positive. TTM = sum of the last 4 distinct fiscal …",
"asOf": "price as of 2026-08-21 · fundamentals through 2026-04-26"
},
"dps": {
"formula": "Dividends Paid (TTM) ÷ Shares Outstanding",
"inputs": [
{
"label": "Dividends per Share (TTM)",
"value": 0.040207,
"format": "per_share",
"qualifier": "split-adjusted"
}
],
"note": "Cash dividends from the cash-flow statement. TTM = sum of the last 4 distinct fi…",
"asOf": "price as of 2026-08-21 · fundamentals through 2026-04-26"
}
}
},
"business_summary": "NVIDIA Corporation operates as a data center scale AI infrastructure company in …",
"employee_count": 42000,
"incorporation_date": null,
"net_income": 18775000000,
"total_assets": 206803000000,
"total_equity": 79327000000,
"shares_outstanding": 24221000000,
"latest_filing": {
"fiscal_year": 2027,
"fiscal_quarter": 1,
"period_end_date": "2026-04-26T07:00:00.000Z",
"filing_type": "10-Q"
}
}
}{
"error": "<string>",
"code": "unauthenticated"
}{
"error": "<string>",
"code": "unauthenticated"
}{
"error": "<string>",
"code": "unauthenticated"
}{
"error": "<string>",
"code": "unauthenticated"
}Company Data
Company profile
Company profile: identity, sector, latest filing, quote, key metrics, corporate lineage.
GET
/
api
/
v1
/
companies
/
{id}
Company profile
curl --request GET \
--url https://www.prometheus.services/api/v1/companies/{id} \
--header 'X-API-KEY: <api-key>'import requests
url = "https://www.prometheus.services/api/v1/companies/{id}"
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}', 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}",
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}"
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}")
.header("X-API-KEY", "<api-key>")
.asString();require 'uri'
require 'net/http'
url = URI("https://www.prometheus.services/api/v1/companies/{id}")
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{
"company": {
"id": "69d1debf-37a7-4959-b4e5-6030b5ac1a84",
"name": "NVIDIA CORP",
"legal_name": "NVIDIA CORP",
"symbol": "NVDA",
"ticker": "NVDA",
"cik": "0001045810",
"country_code": "US",
"logoUrl": "/api/v1/companies/NVDA/logo",
"brandMark": "https://cdn.brandfetch.io/nvidia.com/icon?c=1idQJ_8ukVnXwK_PLYs&fallback=404",
"domain": "https://www.nvidia.com",
"secondary_offerings": [],
"subsidiaries": [],
"parent_registrant": null,
"lineage_events": [],
"price": 214.72,
"change": -2.13,
"changePercent": -0.982248,
"afterHoursPrice": 215.38,
"afterHoursChange": 0.660004,
"afterHoursChangePercent": 0.307379,
"prevClose": 216.85,
"open": 218.42,
"dayHigh": 218.74,
"dayLow": 214.5,
"marketCap": "$5.20T",
"marketCapFull": "5,200,733,011,968",
"volume": "91.59M",
"avgVolume": "141.32M",
"range52w": "164.07 – 236.54",
"sector": "Technology",
"industry": "Semiconductors",
"country": "US",
"exchange": "N/A",
"description": "NVIDIA Corporation operates as a data center scale AI infrastructure company in …",
"ipoDate": "Jan 22, 1999",
"ceo": "Jen-Hsun Huang",
"employees": "42,000",
"float": "23.23B shares",
"peRatio": 32.8821,
"dividendYield": 0.46,
"beta": 2.215,
"eps": 6.53,
"revenue": 81615000000,
"statistics": {
"fundamentalsAsOf": "2026-04-26",
"enterpriseValue": 5158868120000,
"sharesOutstanding": 24221000000,
"ttmRevenue": 253491000000,
"grossMargin": 74.1454,
"ebitdaMargin": 65.2938,
"operatingMargin": 64.02,
"preTaxMargin": 74.7336,
"netMargin": 62.9659,
"fcfMargin": 46.9744,
"roa": 61.5141,
"roe": 81.6543,
"roce": 75.2748,
"roic": 89.0126,
"peTtm": 32.8821,
"pb": 26.6058,
"evSales": 20.3513,
"evEbitda": 31.1688,
"pFcf": 43.6757,
"evGrossProfit": 27.4478,
"priceTarget": 304.1207,
"peNtm": 16.4823,
"peg": 0.5973,
"cash": 50335000000,
"netDebt": -41865000000,
"debtEquity": 0.0433,
"ebitInterest": 544.5805,
"revGrowthYoY": 70.6838,
"epsGrowthYoY": 109.9678,
"revCagr3y": 100.0451,
"epsCagr3y": 204.2395,
"payout": 0.6096,
"dps": 0.040207,
"calc": {
"peTtm": {
"formula": "Price ÷ EPS (TTM, diluted)",
"inputs": [
{
"label": "Price",
"value": 214.72,
"format": "price",
"qualifier": "primary listing; fresher of latest close vs live quote"
}
],
"note": "TTM = sum of the last 4 distinct fiscal quarters as known on the metric date (a …",
"asOf": "price as of 2026-08-21 · fundamentals through 2026-04-26"
},
"ev": {
"formula": "Market Cap + Total Debt − Cash & ST Investments",
"inputs": [
{
"label": "Market Cap",
"value": 5200733120000,
"format": "currency"
}
],
"note": "Balance-sheet figures are from the latest filed balance sheet (period end 2026-0…",
"asOf": "price as of 2026-08-21 · fundamentals through 2026-04-26"
},
"ttmRevenue": {
"formula": "Sum of the last 4 fiscal quarters' revenue",
"inputs": [
{
"label": "Revenue (TTM)",
"value": 253491000000,
"format": "currency"
}
],
"note": "TTM = sum of the last 4 distinct fiscal quarters as known on the metric date (a …",
"asOf": "price as of 2026-08-21 · fundamentals through 2026-04-26"
},
"grossMargin": {
"formula": "Gross Profit (TTM) ÷ Revenue (TTM)",
"inputs": [
{
"label": "Gross Profit (TTM)",
"value": 187952000000,
"format": "currency"
}
],
"note": "TTM = sum of the last 4 distinct fiscal quarters as known on the metric date (a …",
"asOf": "price as of 2026-08-21 · fundamentals through 2026-04-26"
},
"ebitdaMargin": {
"formula": "EBITDA (TTM) ÷ Revenue (TTM)",
"inputs": [
{
"label": "EBITDA (TTM)",
"value": 165514000000,
"format": "currency"
}
],
"note": "EBITDA = operating income + depreciation & amortization. TTM = sum of the last 4…",
"asOf": "price as of 2026-08-21 · fundamentals through 2026-04-26"
},
"operatingMargin": {
"formula": "Operating Income (TTM) ÷ Revenue (TTM)",
"inputs": [
{
"label": "Operating Income (TTM)",
"value": 162285000000,
"format": "currency"
}
],
"note": "TTM = sum of the last 4 distinct fiscal quarters as known on the metric date (a …",
"asOf": "price as of 2026-08-21 · fundamentals through 2026-04-26"
},
"preTaxMargin": {
"formula": "Pre-Tax Income (TTM) ÷ Revenue (TTM)",
"inputs": [
{
"label": "Pre-Tax Income (TTM)",
"value": 189443000000,
"format": "currency"
}
],
"note": "TTM = sum of the last 4 distinct fiscal quarters as known on the metric date (a …",
"asOf": "price as of 2026-08-21 · fundamentals through 2026-04-26"
},
"netMargin": {
"formula": "Net Income (TTM) ÷ Revenue (TTM)",
"inputs": [
{
"label": "Net Income (TTM)",
"value": 159613000000,
"format": "currency"
}
],
"note": "Net income attributable to shareholders (ties out to diluted EPS). TTM = sum of …",
"asOf": "price as of 2026-08-21 · fundamentals through 2026-04-26"
},
"fcfMargin": {
"formula": "Free Cash Flow (TTM) ÷ Revenue (TTM)",
"inputs": [
{
"label": "Free Cash Flow (TTM)",
"value": 119076000000,
"format": "currency"
}
],
"note": "FCF = operating cash flow − capital expenditures. TTM = sum of the last 4 distin…",
"asOf": "price as of 2026-08-21 · fundamentals through 2026-04-26"
},
"roa": {
"formula": "Net Income (TTM) ÷ Total Assets",
"inputs": [
{
"label": "Net Income (TTM)",
"value": 159613000000,
"format": "currency"
}
],
"note": "Balance-sheet figures are from the latest filed balance sheet (period end 2026-0…",
"asOf": "price as of 2026-08-21 · fundamentals through 2026-04-26"
},
"roe": {
"formula": "Net Income (TTM) ÷ Shareholders' Equity",
"inputs": [
{
"label": "Net Income (TTM)",
"value": 159613000000,
"format": "currency"
}
],
"note": "Balance-sheet figures are from the latest filed balance sheet (period end 2026-0…",
"asOf": "price as of 2026-08-21 · fundamentals through 2026-04-26"
},
"roce": {
"formula": "Operating Income (TTM) ÷ (Total Assets − Current Liabilities)",
"inputs": [
{
"label": "Operating Income (TTM)",
"value": 162285000000,
"format": "currency"
}
],
"note": "Balance-sheet figures are from the latest filed balance sheet (period end 2026-0…",
"asOf": "price as of 2026-08-21 · fundamentals through 2026-04-26"
},
"roic": {
"formula": "NOPAT ÷ (Total Debt + Equity − Cash & ST Inv)",
"inputs": [
{
"label": "Operating Income (TTM)",
"value": 162285000000,
"format": "currency",
"qualifier": "NOPAT before tax"
}
],
"note": "NOPAT = operating income × (1 − TTM effective tax rate, clamped to 0–50%); effec…",
"asOf": "price as of 2026-08-21 · fundamentals through 2026-04-26"
},
"pb": {
"formula": "Market Cap ÷ Shareholders' Equity",
"inputs": [
{
"label": "Market Cap",
"value": 5200733120000,
"format": "currency"
}
],
"note": "Balance-sheet figures are from the latest filed balance sheet (period end 2026-0…",
"asOf": "price as of 2026-08-21 · fundamentals through 2026-04-26"
},
"evSales": {
"formula": "Enterprise Value ÷ Revenue (TTM)",
"inputs": [
{
"label": "Enterprise Value",
"value": 5158868120000,
"format": "currency"
}
],
"note": "TTM = sum of the last 4 distinct fiscal quarters as known on the metric date (a …",
"asOf": "price as of 2026-08-21 · fundamentals through 2026-04-26"
},
"evEbitda": {
"formula": "Enterprise Value ÷ EBITDA (TTM)",
"inputs": [
{
"label": "Enterprise Value",
"value": 5158868120000,
"format": "currency"
}
],
"note": "EBITDA = operating income + depreciation & amortization. Shown only when EBITDA …",
"asOf": "price as of 2026-08-21 · fundamentals through 2026-04-26"
},
"pFcf": {
"formula": "Market Cap ÷ Free Cash Flow (TTM)",
"inputs": [
{
"label": "Market Cap",
"value": 5200733120000,
"format": "currency"
}
],
"note": "Shown only when FCF is positive. TTM = sum of the last 4 distinct fiscal quarter…",
"asOf": "price as of 2026-08-21 · fundamentals through 2026-04-26"
},
"evGrossProfit": {
"formula": "Enterprise Value ÷ Gross Profit (TTM)",
"inputs": [
{
"label": "Enterprise Value",
"value": 5158868120000,
"format": "currency"
}
],
"note": "TTM = sum of the last 4 distinct fiscal quarters as known on the metric date (a …",
"asOf": "price as of 2026-08-21 · fundamentals through 2026-04-26"
},
"cash": {
"formula": "Cash & Equivalents + Short-Term Investments",
"inputs": [
{
"label": "Cash & ST Investments",
"value": 50335000000,
"format": "currency"
}
],
"note": "Balance-sheet figures are from the latest filed balance sheet (period end 2026-0…",
"asOf": "price as of 2026-08-21 · fundamentals through 2026-04-26"
},
"netDebt": {
"formula": "Total Debt − Cash & ST Investments",
"inputs": [
{
"label": "Total Debt",
"value": 8470000000,
"format": "currency",
"qualifier": "long-term debt incl. current portion"
}
],
"note": "Balance-sheet figures are from the latest filed balance sheet (period end 2026-0…",
"asOf": "price as of 2026-08-21 · fundamentals through 2026-04-26"
},
"debtEquity": {
"formula": "Total Debt ÷ Shareholders' Equity",
"inputs": [
{
"label": "Total Debt",
"value": 8470000000,
"format": "currency"
}
],
"note": "Balance-sheet figures are from the latest filed balance sheet (period end 2026-0…",
"asOf": "price as of 2026-08-21 · fundamentals through 2026-04-26"
},
"ebitInterest": {
"formula": "Operating Income (TTM) ÷ Interest Expense (TTM)",
"inputs": [
{
"label": "Operating Income (TTM)",
"value": 162285000000,
"format": "currency"
}
],
"note": "Shown only when interest expense is positive. TTM = sum of the last 4 distinct f…",
"asOf": "price as of 2026-08-21 · fundamentals through 2026-04-26"
},
"revGrowthYoY": {
"formula": "(Revenue TTM − prior-year Revenue TTM) ÷ prior-year Revenue TTM",
"inputs": [
{
"label": "Revenue (TTM)",
"value": 253491000000,
"format": "currency"
}
],
"note": "TTM = sum of the last 4 distinct fiscal quarters as known on the metric date (a …",
"asOf": "price as of 2026-08-21 · fundamentals through 2026-04-26"
},
"epsGrowthYoY": {
"formula": "(EPS TTM − prior-year EPS TTM) ÷ prior-year EPS TTM",
"inputs": [
{
"label": "EPS (TTM)",
"value": 6.53,
"format": "per_share",
"qualifier": "diluted, split-adjusted"
}
],
"note": "TTM = sum of the last 4 distinct fiscal quarters as known on the metric date (a …",
"asOf": "price as of 2026-08-21 · fundamentals through 2026-04-26"
},
"revCagr3y": {
"formula": "(FY Revenue ÷ FY-3 Revenue)^(1/3) − 1",
"inputs": [],
"note": "Compound annual growth across the last 3 completed fiscal years, from as-filed a…",
"asOf": "price as of 2026-08-21 · fundamentals through 2026-04-26"
},
"epsCagr3y": {
"formula": "(FY diluted EPS ÷ FY-3 diluted EPS)^(1/3) − 1",
"inputs": [],
"note": "Compound annual growth across the last 3 completed fiscal years; each year's dil…",
"asOf": "price as of 2026-08-21 · fundamentals through 2026-04-26"
},
"payout": {
"formula": "Dividends Paid (TTM) ÷ Net Income (TTM)",
"inputs": [
{
"label": "Dividends Paid (TTM)",
"value": 973000848.0000001,
"format": "currency",
"qualifier": "cash dividends from the cash-flow statement (implied)"
}
],
"note": "Shown only when net income is positive. TTM = sum of the last 4 distinct fiscal …",
"asOf": "price as of 2026-08-21 · fundamentals through 2026-04-26"
},
"dps": {
"formula": "Dividends Paid (TTM) ÷ Shares Outstanding",
"inputs": [
{
"label": "Dividends per Share (TTM)",
"value": 0.040207,
"format": "per_share",
"qualifier": "split-adjusted"
}
],
"note": "Cash dividends from the cash-flow statement. TTM = sum of the last 4 distinct fi…",
"asOf": "price as of 2026-08-21 · fundamentals through 2026-04-26"
}
}
},
"business_summary": "NVIDIA Corporation operates as a data center scale AI infrastructure company in …",
"employee_count": 42000,
"incorporation_date": null,
"net_income": 18775000000,
"total_assets": 206803000000,
"total_equity": 79327000000,
"shares_outstanding": 24221000000,
"latest_filing": {
"fiscal_year": 2027,
"fiscal_quarter": 1,
"period_end_date": "2026-04-26T07:00:00.000Z",
"filing_type": "10-Q"
}
}
}{
"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