stocks / #54
- symbol
- DNL
- name
- Pouros, Turner and Considine Corp.
- exchange
- HKEX
- sector
- Communication Services
- marketCap
- 3559860490749
- price
- 2831.02
- priceChangePercent24h
- 14.84
- volume24h
- 80375972
- createdAt
Component variants
Small
stocks/54 Related
Referenced by
curl -sS \
"https://example-data.com/api/v1/stocks/54" \
-H "Accept: application/json"const res = await fetch(
"https://example-data.com/api/v1/stocks/54"
);
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/54"
);
const stock = (await res.json()) as Stock;import requests
res = requests.get(
"https://example-data.com/api/v1/stocks/54"
)
stock = res.json() {
"id": 54,
"symbol": "DNL",
"name": "Pouros, Turner and Considine Corp.",
"exchange": "HKEX",
"sector": "Communication Services",
"marketCap": 3559860490749,
"price": 2831.02,
"priceChangePercent24h": 14.84,
"volume24h": 80375972,
"createdAt": "2025-11-28T11:17:59.275Z"
}