Kertzmann - Dietrich Corp.
- symbol
- OSST
- name
- Kertzmann - Dietrich Corp.
- exchange
- LSE
- sector
- Technology
- marketCap
- 14870253169273
- price
- 3233.64
- priceChangePercent24h
- 1.64
- volume24h
- 4450224
- createdAt
Overview
stocks / #33
Request
curl example
curl -sS \ "https://example-data.com/api/v1/stocks/33" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/stocks/33" ); 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/33"
);
const stock = (await res.json()) as Stock; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/stocks/33"
)
stock = res.json() Response
{
"id": 33,
"symbol": "OSST",
"name": "Kertzmann - Dietrich Corp.",
"exchange": "LSE",
"sector": "Technology",
"marketCap": 14870253169273,
"price": 3233.64,
"priceChangePercent24h": 1.64,
"volume24h": 4450224,
"createdAt": "2026-02-12T10:26:48.920Z"
}