example-data.com

stocks / #65

symbol
ZR
name
Zieme - Walter Corp.
exchange
LSE
sector
Utilities
marketCap
3431765807234
price
1422.25
priceChangePercent24h
-3.07
volume24h
40494542
createdAt

Component variants

Related

Referenced by

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

res = requests.get(
    "https://example-data.com/api/v1/stocks/65"
)
stock = res.json()
{
  "id": 65,
  "symbol": "ZR",
  "name": "Zieme - Walter Corp.",
  "exchange": "LSE",
  "sector": "Utilities",
  "marketCap": 3431765807234,
  "price": 1422.25,
  "priceChangePercent24h": -3.07,
  "volume24h": 40494542,
  "createdAt": "2025-02-03T13:27:51.384Z"
}
Draftbit