Lebsack - Hirthe Corp.
- symbol
- HCG
- name
- Lebsack - Hirthe Corp.
- exchange
- NYSE
- sector
- Industrials
- marketCap
- 903196560258
- price
- 1326.98
- priceChangePercent24h
- 11.64
- volume24h
- 27719259
- createdAt
Overview
stocks / #87
Lebsack - Hirthe Corp.
#87
Request
curl example
curl -sS \ "https://example-data.com/api/v1/stocks/87" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/stocks/87" ); 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/87"
);
const stock = (await res.json()) as Stock; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/stocks/87"
)
stock = res.json() Response
{
"id": 87,
"symbol": "HCG",
"name": "Lebsack - Hirthe Corp.",
"exchange": "NYSE",
"sector": "Industrials",
"marketCap": 903196560258,
"price": 1326.98,
"priceChangePercent24h": 11.64,
"volume24h": 27719259,
"createdAt": "2025-06-18T08:01:31.295Z"
}