example-data.com

stocks / #68

symbol
PLU
name
Hilpert - Bartell Corp.
exchange
NYSE
sector
Technology
marketCap
3256315549206
price
1140.76
priceChangePercent24h
5.51
volume24h
24732110
createdAt

Component variants

Related

Referenced by

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

res = requests.get(
    "https://example-data.com/api/v1/stocks/68"
)
stock = res.json()
{
  "id": 68,
  "symbol": "PLU",
  "name": "Hilpert - Bartell Corp.",
  "exchange": "NYSE",
  "sector": "Technology",
  "marketCap": 3256315549206,
  "price": 1140.76,
  "priceChangePercent24h": 5.51,
  "volume24h": 24732110,
  "createdAt": "2025-01-21T05:43:01.863Z"
}
Draftbit