example-data.com

stocks / #100

symbol
RVJG
name
Hansen Inc Corp.
exchange
TSX
sector
Consumer Discretionary
marketCap
8931289450262
price
2410.2
priceChangePercent24h
-10.67
volume24h
90985037
createdAt

Component variants

Related

Referenced by

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

res = requests.get(
    "https://example-data.com/api/v1/stocks/100"
)
stock = res.json()
{
  "id": 100,
  "symbol": "RVJG",
  "name": "Hansen Inc Corp.",
  "exchange": "TSX",
  "sector": "Consumer Discretionary",
  "marketCap": 8931289450262,
  "price": 2410.2,
  "priceChangePercent24h": -10.67,
  "volume24h": 90985037,
  "createdAt": "2025-11-24T18:55:02.105Z"
}
Draftbit