Williamson LLC Corp.
- symbol
- GKCV
- name
- Williamson LLC Corp.
- exchange
- LSE
- sector
- Technology
- marketCap
- 385524374093
- price
- 751.89
- priceChangePercent24h
- -14.59
- volume24h
- 87592879
- createdAt
Overview
stocks / #76
Williamson LLC Corp.
#76
Request
curl example
curl -sS \ "https://example-data.com/api/v1/stocks/76" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/stocks/76" ); 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/76"
);
const stock = (await res.json()) as Stock; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/stocks/76"
)
stock = res.json() Response
{
"id": 76,
"symbol": "GKCV",
"name": "Williamson LLC Corp.",
"exchange": "LSE",
"sector": "Technology",
"marketCap": 385524374093,
"price": 751.89,
"priceChangePercent24h": -14.59,
"volume24h": 87592879,
"createdAt": "2026-03-01T12:08:42.099Z"
}