example-data.com

stocks / #96

symbol
LBQY
name
Yost - Jast Corp.
exchange
HKEX
sector
Utilities
marketCap
10872384105247
price
3240.52
priceChangePercent24h
-3.62
volume24h
42828463
createdAt

Component variants

Related

Referenced by

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

res = requests.get(
    "https://example-data.com/api/v1/stocks/96"
)
stock = res.json()
{
  "id": 96,
  "symbol": "LBQY",
  "name": "Yost - Jast Corp.",
  "exchange": "HKEX",
  "sector": "Utilities",
  "marketCap": 10872384105247,
  "price": 3240.52,
  "priceChangePercent24h": -3.62,
  "volume24h": 42828463,
  "createdAt": "2024-10-17T12:52:04.680Z"
}
Draftbit