example-data.com

stocks / #67

symbol
NX
name
Hessel Inc Corp.
exchange
LSE
sector
Communication Services
marketCap
6572837585128
price
1720.6
priceChangePercent24h
-13.61
volume24h
67833405
createdAt

Component variants

Related

Referenced by

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

res = requests.get(
    "https://example-data.com/api/v1/stocks/67"
)
stock = res.json()
{
  "id": 67,
  "symbol": "NX",
  "name": "Hessel Inc Corp.",
  "exchange": "LSE",
  "sector": "Communication Services",
  "marketCap": 6572837585128,
  "price": 1720.6,
  "priceChangePercent24h": -13.61,
  "volume24h": 67833405,
  "createdAt": "2025-02-18T15:57:03.642Z"
}
Draftbit