Block, O'Conner and Walker Corp.
- symbol
- OBOK
- name
- Block, O'Conner and Walker Corp.
- exchange
- NASDAQ
- sector
- Consumer Discretionary
- marketCap
- 11773324761513
- price
- 4513.03
- priceChangePercent24h
- -3.95
- volume24h
- 11940715
- createdAt
Overview
stocks / #44
Request
curl example
curl -sS \ "https://example-data.com/api/v1/stocks/44" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/stocks/44" ); 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/44"
);
const stock = (await res.json()) as Stock; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/stocks/44"
)
stock = res.json() Response
{
"id": 44,
"symbol": "OBOK",
"name": "Block, O'Conner and Walker Corp.",
"exchange": "NASDAQ",
"sector": "Consumer Discretionary",
"marketCap": 11773324761513,
"price": 4513.03,
"priceChangePercent24h": -3.95,
"volume24h": 11940715,
"createdAt": "2025-09-24T06:26:29.595Z"
}