example-data.com

stocks / #21

symbol
AVGO
name
Broadcom Inc.
exchange
NASDAQ
sector
Technology
marketCap
16008813140685
price
2154.92
priceChangePercent24h
-14.99
volume24h
416537727
createdAt

Component variants

Related

Referenced by

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

res = requests.get(
    "https://example-data.com/api/v1/stocks/21"
)
stock = res.json()
{
  "id": 21,
  "symbol": "AVGO",
  "name": "Broadcom Inc.",
  "exchange": "NASDAQ",
  "sector": "Technology",
  "marketCap": 16008813140685,
  "price": 2154.92,
  "priceChangePercent24h": -14.99,
  "volume24h": 416537727,
  "createdAt": "2025-10-13T13:35:09.111Z"
}
Draftbit