stocks / #50
- symbol
- LZ
- name
- Cruickshank - Okuneva Corp.
- exchange
- TSX
- sector
- Health Care
- marketCap
- 6925126901279
- price
- 3553.84
- priceChangePercent24h
- -7.32
- volume24h
- 61910267
- createdAt
Component variants
Small
stocks/50 Related
Referenced by
curl -sS \
"https://example-data.com/api/v1/stocks/50" \
-H "Accept: application/json"const res = await fetch(
"https://example-data.com/api/v1/stocks/50"
);
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/50"
);
const stock = (await res.json()) as Stock;import requests
res = requests.get(
"https://example-data.com/api/v1/stocks/50"
)
stock = res.json() {
"id": 50,
"symbol": "LZ",
"name": "Cruickshank - Okuneva Corp.",
"exchange": "TSX",
"sector": "Health Care",
"marketCap": 6925126901279,
"price": 3553.84,
"priceChangePercent24h": -7.32,
"volume24h": 61910267,
"createdAt": "2026-03-14T07:02:24.803Z"
}