example-data.com

stocks / #76

symbol
GKCV
name
Williamson LLC Corp.
exchange
LSE
sector
Technology
marketCap
385524374093
price
751.89
priceChangePercent24h
-14.59
volume24h
87592879
createdAt

Component variants

Related

Referenced by

curl -sS \
  "https://example-data.com/api/v1/stocks/76" \
  -H "Accept: application/json"
const res = await fetch(
  "https://example-data.com/api/v1/stocks/76"
);
const stock = await res.json();
import type { Stock } from "https://example-data.com/types/stocks.d.ts";

const res = await fetch(
  "https://example-data.com/api/v1/stocks/76"
);
const stock = (await res.json()) as Stock;
import requests

res = requests.get(
    "https://example-data.com/api/v1/stocks/76"
)
stock = res.json()
{
  "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"
}
Draftbit