example-data.com

stocks / #73

symbol
JSK
name
Buckridge and Sons Corp.
exchange
LSE
sector
Consumer Discretionary
marketCap
1587464500722
price
366.1
priceChangePercent24h
0.35
volume24h
85755988
createdAt

Component variants

Related

Referenced by

curl -sS \
  "https://example-data.com/api/v1/stocks/73" \
  -H "Accept: application/json"
const res = await fetch(
  "https://example-data.com/api/v1/stocks/73"
);
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/73"
);
const stock = (await res.json()) as Stock;
import requests

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