example-data.com

stocks / #46

symbol
AX
name
Franecki, Baumbach and Jast Corp.
exchange
NASDAQ
sector
Technology
marketCap
5898696969405
price
2557.82
priceChangePercent24h
-9.97
volume24h
65630733
createdAt

Component variants

Related

Referenced by

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

res = requests.get(
    "https://example-data.com/api/v1/stocks/46"
)
stock = res.json()
{
  "id": 46,
  "symbol": "AX",
  "name": "Franecki, Baumbach and Jast Corp.",
  "exchange": "NASDAQ",
  "sector": "Technology",
  "marketCap": 5898696969405,
  "price": 2557.82,
  "priceChangePercent24h": -9.97,
  "volume24h": 65630733,
  "createdAt": "2025-05-25T16:13:34.563Z"
}
Draftbit