example-data.com

stocks / #44

symbol
OBOK
name
Block, O'Conner and Walker Corp.
exchange
NASDAQ
sector
Consumer Discretionary
marketCap
11773324761513
price
4513.03
priceChangePercent24h
-3.95
volume24h
11940715
createdAt

Component variants

Related

Referenced by

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

res = requests.get(
    "https://example-data.com/api/v1/stocks/44"
)
stock = res.json()
{
  "id": 44,
  "symbol": "OBOK",
  "name": "Block, O'Conner and Walker Corp.",
  "exchange": "NASDAQ",
  "sector": "Consumer Discretionary",
  "marketCap": 11773324761513,
  "price": 4513.03,
  "priceChangePercent24h": -3.95,
  "volume24h": 11940715,
  "createdAt": "2025-09-24T06:26:29.595Z"
}
Draftbit