Hessel Inc Corp.
- symbol
- NX
- name
- Hessel Inc Corp.
- exchange
- LSE
- sector
- Communication Services
- marketCap
- 6572837585128
- price
- 1720.6
- priceChangePercent24h
- -13.61
- volume24h
- 67833405
- createdAt
Overview
stocks / #67
Hessel Inc Corp.
#67
Request
curl example
curl -sS \ "https://example-data.com/api/v1/stocks/67" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/stocks/67" ); 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/67"
);
const stock = (await res.json()) as Stock; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/stocks/67"
)
stock = res.json() Response
{
"id": 67,
"symbol": "NX",
"name": "Hessel Inc Corp.",
"exchange": "LSE",
"sector": "Communication Services",
"marketCap": 6572837585128,
"price": 1720.6,
"priceChangePercent24h": -13.61,
"volume24h": 67833405,
"createdAt": "2025-02-18T15:57:03.642Z"
}