Lockman Inc Corp.
- symbol
- HGL
- name
- Lockman Inc Corp.
- exchange
- LSE
- sector
- Technology
- marketCap
- 10506317547138
- price
- 4951.08
- priceChangePercent24h
- -9.48
- volume24h
- 22244853
- createdAt
Overview
stocks / #53
Lockman Inc Corp.
#53
Request
curl example
curl -sS \ "https://example-data.com/api/v1/stocks/53" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/stocks/53" ); 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/53"
);
const stock = (await res.json()) as Stock; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/stocks/53"
)
stock = res.json() Response
{
"id": 53,
"symbol": "HGL",
"name": "Lockman Inc Corp.",
"exchange": "LSE",
"sector": "Technology",
"marketCap": 10506317547138,
"price": 4951.08,
"priceChangePercent24h": -9.48,
"volume24h": 22244853,
"createdAt": "2024-05-31T01:36:37.462Z"
}