example-data.com

stocks / #32

symbol
NZGK
name
Weimann - Kris Corp.
exchange
NYSE
sector
Utilities
marketCap
1340482530903
price
2044.3
priceChangePercent24h
-0.34
volume24h
74940875
createdAt

Component variants

Related

Referenced by

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

res = requests.get(
    "https://example-data.com/api/v1/stocks/32"
)
stock = res.json()
{
  "id": 32,
  "symbol": "NZGK",
  "name": "Weimann - Kris Corp.",
  "exchange": "NYSE",
  "sector": "Utilities",
  "marketCap": 1340482530903,
  "price": 2044.3,
  "priceChangePercent24h": -0.34,
  "volume24h": 74940875,
  "createdAt": "2026-05-20T03:00:14.242Z"
}
Draftbit