example-data.com

stocks / #51

symbol
LPK
name
Bergnaum Group Corp.
exchange
TSX
sector
Communication Services
marketCap
2869960984492
price
3090.93
priceChangePercent24h
-1.81
volume24h
40859925
createdAt

Component variants

Related

Referenced by

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

res = requests.get(
    "https://example-data.com/api/v1/stocks/51"
)
stock = res.json()
{
  "id": 51,
  "symbol": "LPK",
  "name": "Bergnaum Group Corp.",
  "exchange": "TSX",
  "sector": "Communication Services",
  "marketCap": 2869960984492,
  "price": 3090.93,
  "priceChangePercent24h": -1.81,
  "volume24h": 40859925,
  "createdAt": "2024-08-15T12:10:28.835Z"
}
Draftbit