Armstrong, Stamm and Pagac Corp.
- symbol
- IBF
- name
- Armstrong, Stamm and Pagac Corp.
- exchange
- NASDAQ
- sector
- Materials
- marketCap
- 210421914680
- price
- 4532.45
- priceChangePercent24h
- -12.17
- volume24h
- 23580821
- createdAt
Overview
stocks / #84
Request
curl example
curl -sS \ "https://example-data.com/api/v1/stocks/84" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/stocks/84" ); const stock = await res.json();
TypeScript example
// Download once: mkdir -p types && curl -o types/stocks.d.ts https://example-data.com/types/stocks.d.ts
import type { Stock } from "./types/stocks";
const res = await fetch(
"https://example-data.com/api/v1/stocks/84"
);
const stock = (await res.json()) as Stock; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/stocks/84"
)
stock = res.json() Response
{
"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"
}