Hackett Inc Corp.
- symbol
- HTDC
- name
- Hackett Inc Corp.
- exchange
- NYSE
- sector
- Real Estate
- marketCap
- 12068681797926
- price
- 4914.48
- priceChangePercent24h
- 12.63
- volume24h
- 41707986
- createdAt
Overview
stocks / #99
Hackett Inc Corp.
#99
Request
curl example
curl -sS \ "https://example-data.com/api/v1/stocks/99" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/stocks/99" ); 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/99"
);
const stock = (await res.json()) as Stock; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/stocks/99"
)
stock = res.json() Response
{
"id": 99,
"symbol": "HTDC",
"name": "Hackett Inc Corp.",
"exchange": "NYSE",
"sector": "Real Estate",
"marketCap": 12068681797926,
"price": 4914.48,
"priceChangePercent24h": 12.63,
"volume24h": 41707986,
"createdAt": "2025-03-31T21:40:29.003Z"
}