stocks / #97
- symbol
- POHI
- name
- Lubowitz - Schulist Corp.
- exchange
- NYSE
- sector
- Materials
- marketCap
- 3411034432244
- price
- 2165.53
- priceChangePercent24h
- 13.13
- volume24h
- 72289355
- createdAt
Component variants
Small
stocks/97 Related
Referenced by
curl -sS \
"https://example-data.com/api/v1/stocks/97" \
-H "Accept: application/json"const res = await fetch(
"https://example-data.com/api/v1/stocks/97"
);
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/97"
);
const stock = (await res.json()) as Stock;import requests
res = requests.get(
"https://example-data.com/api/v1/stocks/97"
)
stock = res.json() {
"id": 97,
"symbol": "POHI",
"name": "Lubowitz - Schulist Corp.",
"exchange": "NYSE",
"sector": "Materials",
"marketCap": 3411034432244,
"price": 2165.53,
"priceChangePercent24h": 13.13,
"volume24h": 72289355,
"createdAt": "2024-11-29T18:57:01.967Z"
}