example-data.com

stocks / #33

symbol
OSST
name
Kertzmann - Dietrich Corp.
exchange
LSE
sector
Technology
marketCap
14870253169273
price
3233.64
priceChangePercent24h
1.64
volume24h
4450224
createdAt

Component variants

Related

Referenced by

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

res = requests.get(
    "https://example-data.com/api/v1/stocks/33"
)
stock = res.json()
{
  "id": 33,
  "symbol": "OSST",
  "name": "Kertzmann - Dietrich Corp.",
  "exchange": "LSE",
  "sector": "Technology",
  "marketCap": 14870253169273,
  "price": 3233.64,
  "priceChangePercent24h": 1.64,
  "volume24h": 4450224,
  "createdAt": "2026-02-12T10:26:48.920Z"
}
Draftbit