example-data.com

stocks / #92

symbol
JXUU
name
Rodriguez and Sons Corp.
exchange
NASDAQ
sector
Real Estate
marketCap
8339207728747
price
3683.87
priceChangePercent24h
10.53
volume24h
23882924
createdAt

Component variants

Related

Referenced by

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

res = requests.get(
    "https://example-data.com/api/v1/stocks/92"
)
stock = res.json()
{
  "id": 92,
  "symbol": "JXUU",
  "name": "Rodriguez and Sons Corp.",
  "exchange": "NASDAQ",
  "sector": "Real Estate",
  "marketCap": 8339207728747,
  "price": 3683.87,
  "priceChangePercent24h": 10.53,
  "volume24h": 23882924,
  "createdAt": "2025-11-12T03:24:56.508Z"
}
Draftbit