example-data.com

stocks / #55

symbol
YJ
name
Donnelly, Hand and Wolff Corp.
exchange
TSX
sector
Technology
marketCap
6294920534102
price
4249.56
priceChangePercent24h
-13.09
volume24h
1147636
createdAt

Component variants

Related

Referenced by

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

res = requests.get(
    "https://example-data.com/api/v1/stocks/55"
)
stock = res.json()
{
  "id": 55,
  "symbol": "YJ",
  "name": "Donnelly, Hand and Wolff Corp.",
  "exchange": "TSX",
  "sector": "Technology",
  "marketCap": 6294920534102,
  "price": 4249.56,
  "priceChangePercent24h": -13.09,
  "volume24h": 1147636,
  "createdAt": "2025-04-05T08:21:28.125Z"
}
Draftbit