example-data.com

stocks / #42

symbol
EJIQ
name
Medhurst - Hirthe Corp.
exchange
NYSE
sector
Industrials
marketCap
1709353776504
price
549.38
priceChangePercent24h
10.87
volume24h
53232587
createdAt

Component variants

Related

Referenced by

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

res = requests.get(
    "https://example-data.com/api/v1/stocks/42"
)
stock = res.json()
{
  "id": 42,
  "symbol": "EJIQ",
  "name": "Medhurst - Hirthe Corp.",
  "exchange": "NYSE",
  "sector": "Industrials",
  "marketCap": 1709353776504,
  "price": 549.38,
  "priceChangePercent24h": 10.87,
  "volume24h": 53232587,
  "createdAt": "2026-03-09T15:39:01.840Z"
}
Draftbit