stocks / #63
- symbol
- KITN
- name
- Tillman, Oberbrunner and Considine Corp.
- exchange
- HKEX
- sector
- Consumer Staples
- marketCap
- 2463286005614
- price
- 1054.34
- priceChangePercent24h
- -6.6
- volume24h
- 5663719
- createdAt
Component variants
Small
stocks/63 Related
Referenced by
curl -sS \
"https://example-data.com/api/v1/stocks/63" \
-H "Accept: application/json"const res = await fetch(
"https://example-data.com/api/v1/stocks/63"
);
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/63"
);
const stock = (await res.json()) as Stock;import requests
res = requests.get(
"https://example-data.com/api/v1/stocks/63"
)
stock = res.json() {
"id": 63,
"symbol": "KITN",
"name": "Tillman, Oberbrunner and Considine Corp.",
"exchange": "HKEX",
"sector": "Consumer Staples",
"marketCap": 2463286005614,
"price": 1054.34,
"priceChangePercent24h": -6.6,
"volume24h": 5663719,
"createdAt": "2025-05-02T19:54:53.671Z"
}