example-data.com

stocks / #7

symbol
NVDA
name
NVIDIA Corporation
exchange
NASDAQ
sector
Technology
marketCap
10309572355262
price
2788.12
priceChangePercent24h
0.68
volume24h
436752034
createdAt

Component variants

Related

Referenced by

curl -sS \
  "https://example-data.com/api/v1/stocks/7" \
  -H "Accept: application/json"
const res = await fetch(
  "https://example-data.com/api/v1/stocks/7"
);
const stock = await res.json();
import type { Stock } from "https://example-data.com/types/stocks.d.ts";

const res = await fetch(
  "https://example-data.com/api/v1/stocks/7"
);
const stock = (await res.json()) as Stock;
import requests

res = requests.get(
    "https://example-data.com/api/v1/stocks/7"
)
stock = res.json()
{
  "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"
}
Draftbit