Tillman, Oberbrunner and Considine Corp.
- symbol
- KITN
- name
- Tillman, Oberbrunner and Considine Corp.
- exchange
- HKEX
- sector
- Consumer Staples
- marketCap
- 2463286005614
- price
- 1054.34
- priceChangePercent24h
- -6.6
- volume24h
- 5663719
- createdAt
Overview
stocks / #63
Request
curl example
curl -sS \ "https://example-data.com/api/v1/stocks/63" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/stocks/63" ); 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/63"
);
const stock = (await res.json()) as Stock; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/stocks/63"
)
stock = res.json() Response
{
"id": 63,
"symbol": "KITN",
"name": "Tillman, Oberbrunner and Considine Corp.",
"exchange": "HKEX",
"sector": "Consumer Staples",
"marketCap": 2463286005614,
"price": 1054.34,
"priceChangePercent24h": -6.6,
"volume24h": 5663719,
"createdAt": "2025-05-02T19:54:53.671Z"
}