example-data.com

stocks / #56

symbol
ZR
name
Stehr, Walker and Powlowski Corp.
exchange
NASDAQ
sector
Industrials
marketCap
13559841500675
price
3498.97
priceChangePercent24h
-5.34
volume24h
99007551
createdAt

Component variants

Related

Referenced by

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

res = requests.get(
    "https://example-data.com/api/v1/stocks/56"
)
stock = res.json()
{
  "id": 56,
  "symbol": "ZR",
  "name": "Stehr, Walker and Powlowski Corp.",
  "exchange": "NASDAQ",
  "sector": "Industrials",
  "marketCap": 13559841500675,
  "price": 3498.97,
  "priceChangePercent24h": -5.34,
  "volume24h": 99007551,
  "createdAt": "2024-11-15T19:01:37.647Z"
}
Draftbit