Haag - Reichel Corp.
- symbol
- AC
- name
- Haag - Reichel Corp.
- exchange
- NASDAQ
- sector
- Technology
- marketCap
- 3566918650215
- price
- 1787.16
- priceChangePercent24h
- -5.59
- volume24h
- 41777044
- createdAt
Overview
stocks / #41
Haag - Reichel Corp.
#41
Request
curl example
curl -sS \ "https://example-data.com/api/v1/stocks/41" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/stocks/41" ); 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/41"
);
const stock = (await res.json()) as Stock; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/stocks/41"
)
stock = res.json() Response
{
"id": 41,
"symbol": "AC",
"name": "Haag - Reichel Corp.",
"exchange": "NASDAQ",
"sector": "Technology",
"marketCap": 3566918650215,
"price": 1787.16,
"priceChangePercent24h": -5.59,
"volume24h": 41777044,
"createdAt": "2024-08-05T19:40:16.557Z"
}