example-data.com

stocks / #23

symbol
TMO
name
Thermo Fisher Scientific Inc.
exchange
NYSE
sector
Health Care
marketCap
11243532281551
price
4817.72
priceChangePercent24h
-3.62
volume24h
302150899
createdAt

Component variants

Related

Referenced by

curl -sS \
  "https://example-data.com/api/v1/stocks/23" \
  -H "Accept: application/json"
const res = await fetch(
  "https://example-data.com/api/v1/stocks/23"
);
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/23"
);
const stock = (await res.json()) as Stock;
import requests

res = requests.get(
    "https://example-data.com/api/v1/stocks/23"
)
stock = res.json()
{
  "id": 23,
  "symbol": "TMO",
  "name": "Thermo Fisher Scientific Inc.",
  "exchange": "NYSE",
  "sector": "Health Care",
  "marketCap": 11243532281551,
  "price": 4817.72,
  "priceChangePercent24h": -3.62,
  "volume24h": 302150899,
  "createdAt": "2026-03-10T12:26:30.248Z"
}
Draftbit