example-data.com

stocks / #80

symbol
QCUS
name
Ankunding - Reichel Corp.
exchange
TSX
sector
Consumer Staples
marketCap
888551234875
price
4073.04
priceChangePercent24h
9.38
volume24h
61592630
createdAt

Component variants

Related

Referenced by

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

res = requests.get(
    "https://example-data.com/api/v1/stocks/80"
)
stock = res.json()
{
  "id": 80,
  "symbol": "QCUS",
  "name": "Ankunding - Reichel Corp.",
  "exchange": "TSX",
  "sector": "Consumer Staples",
  "marketCap": 888551234875,
  "price": 4073.04,
  "priceChangePercent24h": 9.38,
  "volume24h": 61592630,
  "createdAt": "2025-05-18T03:07:54.858Z"
}
Draftbit