example-data.com

stocks / #78

symbol
GCO
name
Waters Group Corp.
exchange
NASDAQ
sector
Real Estate
marketCap
2323485198308
price
678.27
priceChangePercent24h
-12.4
volume24h
25061539
createdAt

Component variants

Related

Referenced by

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

res = requests.get(
    "https://example-data.com/api/v1/stocks/78"
)
stock = res.json()
{
  "id": 78,
  "symbol": "GCO",
  "name": "Waters Group Corp.",
  "exchange": "NASDAQ",
  "sector": "Real Estate",
  "marketCap": 2323485198308,
  "price": 678.27,
  "priceChangePercent24h": -12.4,
  "volume24h": 25061539,
  "createdAt": "2025-01-22T14:48:33.281Z"
}
Draftbit