example-data.com

stocks / #47

symbol
JBQO
name
Parisian - Upton Corp.
exchange
LSE
sector
Health Care
marketCap
13843445398860
price
2892.35
priceChangePercent24h
-10.66
volume24h
89592116
createdAt

Component variants

Related

Referenced by

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

res = requests.get(
    "https://example-data.com/api/v1/stocks/47"
)
stock = res.json()
{
  "id": 47,
  "symbol": "JBQO",
  "name": "Parisian - Upton Corp.",
  "exchange": "LSE",
  "sector": "Health Care",
  "marketCap": 13843445398860,
  "price": 2892.35,
  "priceChangePercent24h": -10.66,
  "volume24h": 89592116,
  "createdAt": "2025-11-14T06:17:52.671Z"
}
Draftbit