example-data.com

stocks / #35

symbol
ER
name
Ebert Group Corp.
exchange
LSE
sector
Materials
marketCap
10864048273599
price
4773.58
priceChangePercent24h
-6.14
volume24h
53285303
createdAt

Component variants

Related

Referenced by

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

res = requests.get(
    "https://example-data.com/api/v1/stocks/35"
)
stock = res.json()
{
  "id": 35,
  "symbol": "ER",
  "name": "Ebert Group Corp.",
  "exchange": "LSE",
  "sector": "Materials",
  "marketCap": 10864048273599,
  "price": 4773.58,
  "priceChangePercent24h": -6.14,
  "volume24h": 53285303,
  "createdAt": "2024-09-08T22:43:16.359Z"
}
Draftbit