example-data.com

stocks / #79

symbol
PKUX
name
Halvorson and Sons Corp.
exchange
HKEX
sector
Technology
marketCap
83438458862
price
50.13
priceChangePercent24h
-7.89
volume24h
35205339
createdAt

Component variants

Related

Referenced by

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

res = requests.get(
    "https://example-data.com/api/v1/stocks/79"
)
stock = res.json()
{
  "id": 79,
  "symbol": "PKUX",
  "name": "Halvorson and Sons Corp.",
  "exchange": "HKEX",
  "sector": "Technology",
  "marketCap": 83438458862,
  "price": 50.13,
  "priceChangePercent24h": -7.89,
  "volume24h": 35205339,
  "createdAt": "2025-08-17T07:23:45.848Z"
}
Draftbit