Buckridge and Sons Corp.
- symbol
- JSK
- name
- Buckridge and Sons Corp.
- exchange
- LSE
- sector
- Consumer Discretionary
- marketCap
- 1587464500722
- price
- 366.1
- priceChangePercent24h
- 0.35
- volume24h
- 85755988
- createdAt
Overview
stocks / #73
Buckridge and Sons Corp.
#73
Request
curl example
curl -sS \ "https://example-data.com/api/v1/stocks/73" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/stocks/73" ); 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/73"
);
const stock = (await res.json()) as Stock; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/stocks/73"
)
stock = res.json() Response
{
"id": 73,
"symbol": "JSK",
"name": "Buckridge and Sons Corp.",
"exchange": "LSE",
"sector": "Consumer Discretionary",
"marketCap": 1587464500722,
"price": 366.1,
"priceChangePercent24h": 0.35,
"volume24h": 85755988,
"createdAt": "2025-11-01T23:15:09.226Z"
}