stocks / #60
- symbol
- LUU
- name
- Jerde, Bashirian and Anderson Corp.
- exchange
- NYSE
- sector
- Technology
- marketCap
- 4587410699188
- price
- 1062.5
- priceChangePercent24h
- 14.09
- volume24h
- 5800420
- createdAt
Component variants
Small
stocks/60 Related
Referenced by
curl -sS \
"https://example-data.com/api/v1/stocks/60" \
-H "Accept: application/json"const res = await fetch(
"https://example-data.com/api/v1/stocks/60"
);
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/60"
);
const stock = (await res.json()) as Stock;import requests
res = requests.get(
"https://example-data.com/api/v1/stocks/60"
)
stock = res.json() {
"id": 60,
"symbol": "LUU",
"name": "Jerde, Bashirian and Anderson Corp.",
"exchange": "NYSE",
"sector": "Technology",
"marketCap": 4587410699188,
"price": 1062.5,
"priceChangePercent24h": 14.09,
"volume24h": 5800420,
"createdAt": "2025-09-30T04:32:59.684Z"
}