example-data.com

stocks / #69

symbol
BS
name
Hyatt - Wolff Corp.
exchange
TSX
sector
Communication Services
marketCap
20051134682647
price
4056.06
priceChangePercent24h
8.18
volume24h
87557722
createdAt

Component variants

Related

Referenced by

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

res = requests.get(
    "https://example-data.com/api/v1/stocks/69"
)
stock = res.json()
{
  "id": 69,
  "symbol": "BS",
  "name": "Hyatt - Wolff Corp.",
  "exchange": "TSX",
  "sector": "Communication Services",
  "marketCap": 20051134682647,
  "price": 4056.06,
  "priceChangePercent24h": 8.18,
  "volume24h": 87557722,
  "createdAt": "2026-01-18T05:09:47.381Z"
}
Draftbit