Ankunding - Reichel Corp.
- symbol
- QCUS
- name
- Ankunding - Reichel Corp.
- exchange
- TSX
- sector
- Consumer Staples
- marketCap
- 888551234875
- price
- 4073.04
- priceChangePercent24h
- 9.38
- volume24h
- 61592630
- createdAt
Overview
stocks / #80
Request
curl example
curl -sS \ "https://example-data.com/api/v1/stocks/80" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/stocks/80" ); 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/80"
);
const stock = (await res.json()) as Stock; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/stocks/80"
)
stock = res.json() Response
{
"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"
}