NVIDIA Corporation
- symbol
- NVDA
- name
- NVIDIA Corporation
- exchange
- NASDAQ
- sector
- Technology
- marketCap
- 10309572355262
- price
- 2788.12
- priceChangePercent24h
- 0.68
- volume24h
- 436752034
- createdAt
Overview
stocks / #7
NVIDIA Corporation
#7
Request
curl example
curl -sS \ "https://example-data.com/api/v1/stocks/7" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/stocks/7" ); const stock = await res.json();
TypeScript example
// Download once: mkdir -p types && curl -o types/stocks.d.ts https://example-data.com/types/stocks.d.ts
import type { Stock } from "./types/stocks";
const res = await fetch(
"https://example-data.com/api/v1/stocks/7"
);
const stock = (await res.json()) as Stock; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/stocks/7"
)
stock = res.json() Response
{
"id": 7,
"symbol": "NVDA",
"name": "NVIDIA Corporation",
"exchange": "NASDAQ",
"sector": "Technology",
"marketCap": 10309572355262,
"price": 2788.12,
"priceChangePercent24h": 0.68,
"volume24h": 436752034,
"createdAt": "2025-01-08T07:57:37.812Z"
}