example-data.com

stocks / #37

symbol
ED
name
Wiza - Goodwin Corp.
exchange
HKEX
sector
Materials
marketCap
11649158154610
price
3998.25
priceChangePercent24h
11.03
volume24h
12676687
createdAt

Component variants

Related

Referenced by

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

res = requests.get(
    "https://example-data.com/api/v1/stocks/37"
)
stock = res.json()
{
  "id": 37,
  "symbol": "ED",
  "name": "Wiza - Goodwin Corp.",
  "exchange": "HKEX",
  "sector": "Materials",
  "marketCap": 11649158154610,
  "price": 3998.25,
  "priceChangePercent24h": 11.03,
  "volume24h": 12676687,
  "createdAt": "2025-10-10T03:50:31.719Z"
}
Draftbit