example-data.com

stocks / #87

symbol
HCG
name
Lebsack - Hirthe Corp.
exchange
NYSE
sector
Industrials
marketCap
903196560258
price
1326.98
priceChangePercent24h
11.64
volume24h
27719259
createdAt

Component variants

Related

Referenced by

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

res = requests.get(
    "https://example-data.com/api/v1/stocks/87"
)
stock = res.json()
{
  "id": 87,
  "symbol": "HCG",
  "name": "Lebsack - Hirthe Corp.",
  "exchange": "NYSE",
  "sector": "Industrials",
  "marketCap": 903196560258,
  "price": 1326.98,
  "priceChangePercent24h": 11.64,
  "volume24h": 27719259,
  "createdAt": "2025-06-18T08:01:31.295Z"
}
Draftbit