Gibson, Adams and Leannon Corp.
- symbol
- KHJ
- name
- Gibson, Adams and Leannon Corp.
- exchange
- HKEX
- sector
- Technology
- marketCap
- 11337057401037
- price
- 4961.42
- priceChangePercent24h
- -2.8
- volume24h
- 5970075
- createdAt
Overview
stocks / #98
Request
curl example
curl -sS \ "https://example-data.com/api/v1/stocks/98" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/stocks/98" ); 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/98"
);
const stock = (await res.json()) as Stock; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/stocks/98"
)
stock = res.json() Response
{
"id": 98,
"symbol": "KHJ",
"name": "Gibson, Adams and Leannon Corp.",
"exchange": "HKEX",
"sector": "Technology",
"marketCap": 11337057401037,
"price": 4961.42,
"priceChangePercent24h": -2.8,
"volume24h": 5970075,
"createdAt": "2024-07-06T20:46:32.829Z"
}