example-data.com

stocks / #31

symbol
SUJ
name
Luettgen and Sons Corp.
exchange
NASDAQ
sector
Health Care
marketCap
15170186189939
price
3548.64
priceChangePercent24h
12.62
volume24h
29391190
createdAt

Component variants

Related

Referenced by

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

res = requests.get(
    "https://example-data.com/api/v1/stocks/31"
)
stock = res.json()
{
  "id": 31,
  "symbol": "SUJ",
  "name": "Luettgen and Sons Corp.",
  "exchange": "NASDAQ",
  "sector": "Health Care",
  "marketCap": 15170186189939,
  "price": 3548.64,
  "priceChangePercent24h": 12.62,
  "volume24h": 29391190,
  "createdAt": "2025-12-15T06:39:24.685Z"
}
Draftbit