Franecki, Baumbach and Jast Corp.
- symbol
- AX
- name
- Franecki, Baumbach and Jast Corp.
- exchange
- NASDAQ
- sector
- Technology
- marketCap
- 5898696969405
- price
- 2557.82
- priceChangePercent24h
- -9.97
- volume24h
- 65630733
- createdAt
Overview
stocks / #46
Request
curl example
curl -sS \ "https://example-data.com/api/v1/stocks/46" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/stocks/46" ); 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/46"
);
const stock = (await res.json()) as Stock; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/stocks/46"
)
stock = res.json() Response
{
"id": 46,
"symbol": "AX",
"name": "Franecki, Baumbach and Jast Corp.",
"exchange": "NASDAQ",
"sector": "Technology",
"marketCap": 5898696969405,
"price": 2557.82,
"priceChangePercent24h": -9.97,
"volume24h": 65630733,
"createdAt": "2025-05-25T16:13:34.563Z"
}