example-data.com

stocks / #64

symbol
ZBTO
name
Zieme - Bernhard Corp.
exchange
LSE
sector
Real Estate
marketCap
7472246405409
price
4828.34
priceChangePercent24h
12.07
volume24h
97958609
createdAt

Component variants

Related

Referenced by

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

res = requests.get(
    "https://example-data.com/api/v1/stocks/64"
)
stock = res.json()
{
  "id": 64,
  "symbol": "ZBTO",
  "name": "Zieme - Bernhard Corp.",
  "exchange": "LSE",
  "sector": "Real Estate",
  "marketCap": 7472246405409,
  "price": 4828.34,
  "priceChangePercent24h": 12.07,
  "volume24h": 97958609,
  "createdAt": "2026-02-24T19:42:40.172Z"
}
Draftbit