Cruickshank - Okuneva Corp.
- symbol
- LZ
- name
- Cruickshank - Okuneva Corp.
- exchange
- TSX
- sector
- Health Care
- marketCap
- 6925126901279
- price
- 3553.84
- priceChangePercent24h
- -7.32
- volume24h
- 61910267
- createdAt
Overview
stocks / #50
Request
curl example
curl -sS \ "https://example-data.com/api/v1/stocks/50" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/stocks/50" ); const stock = await res.json();
TypeScript example
// Download once: mkdir -p types && curl -o types/stocks.d.ts https://example-data.com/types/stocks.d.ts
import type { Stock } from "./types/stocks";
const res = await fetch(
"https://example-data.com/api/v1/stocks/50"
);
const stock = (await res.json()) as Stock; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/stocks/50"
)
stock = res.json() Response
{
"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"
}