example-data.com

stocks / #91

symbol
VI
name
Dicki - Lueilwitz Corp.
exchange
HKEX
sector
Real Estate
marketCap
4932577108424
price
3790.35
priceChangePercent24h
8.42
volume24h
90784704
createdAt

Component variants

Related

Referenced by

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

res = requests.get(
    "https://example-data.com/api/v1/stocks/91"
)
stock = res.json()
{
  "id": 91,
  "symbol": "VI",
  "name": "Dicki - Lueilwitz Corp.",
  "exchange": "HKEX",
  "sector": "Real Estate",
  "marketCap": 4932577108424,
  "price": 3790.35,
  "priceChangePercent24h": 8.42,
  "volume24h": 90784704,
  "createdAt": "2025-03-24T07:41:18.244Z"
}
Draftbit