stocks / #84
- symbol
- IBF
- name
- Armstrong, Stamm and Pagac Corp.
- exchange
- NASDAQ
- sector
- Materials
- marketCap
- 210421914680
- price
- 4532.45
- priceChangePercent24h
- -12.17
- volume24h
- 23580821
- createdAt
Component variants
Small
stocks/84 Related
Referenced by
curl -sS \
"https://example-data.com/api/v1/stocks/84" \
-H "Accept: application/json"const res = await fetch(
"https://example-data.com/api/v1/stocks/84"
);
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/84"
);
const stock = (await res.json()) as Stock;import requests
res = requests.get(
"https://example-data.com/api/v1/stocks/84"
)
stock = res.json() {
"id": 84,
"symbol": "IBF",
"name": "Armstrong, Stamm and Pagac Corp.",
"exchange": "NASDAQ",
"sector": "Materials",
"marketCap": 210421914680,
"price": 4532.45,
"priceChangePercent24h": -12.17,
"volume24h": 23580821,
"createdAt": "2025-07-02T08:38:21.728Z"
}