stocks / #71
- symbol
- GA
- name
- Effertz, Crona and Kunde Corp.
- exchange
- LSE
- sector
- Industrials
- marketCap
- 8297055265185
- price
- 1829.83
- priceChangePercent24h
- -3.94
- volume24h
- 21585137
- createdAt
Component variants
Small
stocks/71 Related
Referenced by
curl -sS \
"https://example-data.com/api/v1/stocks/71" \
-H "Accept: application/json"const res = await fetch(
"https://example-data.com/api/v1/stocks/71"
);
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/71"
);
const stock = (await res.json()) as Stock;import requests
res = requests.get(
"https://example-data.com/api/v1/stocks/71"
)
stock = res.json() {
"id": 71,
"symbol": "GA",
"name": "Effertz, Crona and Kunde Corp.",
"exchange": "LSE",
"sector": "Industrials",
"marketCap": 8297055265185,
"price": 1829.83,
"priceChangePercent24h": -3.94,
"volume24h": 21585137,
"createdAt": "2025-03-23T05:09:44.541Z"
}