example-data.com

stocks / #36

symbol
GRK
name
Dicki, McLaughlin and Durgan Corp.
exchange
TSX
sector
Technology
marketCap
4532301426622
price
3664.54
priceChangePercent24h
6.18
volume24h
49600985
createdAt

Component variants

Related

Referenced by

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

res = requests.get(
    "https://example-data.com/api/v1/stocks/36"
)
stock = res.json()
{
  "id": 36,
  "symbol": "GRK",
  "name": "Dicki, McLaughlin and Durgan Corp.",
  "exchange": "TSX",
  "sector": "Technology",
  "marketCap": 4532301426622,
  "price": 3664.54,
  "priceChangePercent24h": 6.18,
  "volume24h": 49600985,
  "createdAt": "2025-02-09T09:29:45.667Z"
}
Draftbit