example-data.com

stocks / #13

symbol
UNH
name
UnitedHealth Group Inc.
exchange
NYSE
sector
Health Care
marketCap
2581883073313
price
2331.82
priceChangePercent24h
8.78
volume24h
203025075
createdAt

Component variants

Related

Referenced by

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

res = requests.get(
    "https://example-data.com/api/v1/stocks/13"
)
stock = res.json()
{
  "id": 13,
  "symbol": "UNH",
  "name": "UnitedHealth Group Inc.",
  "exchange": "NYSE",
  "sector": "Health Care",
  "marketCap": 2581883073313,
  "price": 2331.82,
  "priceChangePercent24h": 8.78,
  "volume24h": 203025075,
  "createdAt": "2026-04-03T23:27:22.817Z"
}
Draftbit