stocks / #77
- symbol
- QA
- name
- Rogahn - Runolfsson Corp.
- exchange
- NASDAQ
- sector
- Financials
- marketCap
- 7169626158605
- price
- 4084.21
- priceChangePercent24h
- -1.25
- volume24h
- 66024666
- createdAt
Component variants
Small
stocks/77 Related
Referenced by
curl -sS \
"https://example-data.com/api/v1/stocks/77" \
-H "Accept: application/json"const res = await fetch(
"https://example-data.com/api/v1/stocks/77"
);
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/77"
);
const stock = (await res.json()) as Stock;import requests
res = requests.get(
"https://example-data.com/api/v1/stocks/77"
)
stock = res.json() {
"id": 77,
"symbol": "QA",
"name": "Rogahn - Runolfsson Corp.",
"exchange": "NASDAQ",
"sector": "Financials",
"marketCap": 7169626158605,
"price": 4084.21,
"priceChangePercent24h": -1.25,
"volume24h": 66024666,
"createdAt": "2024-07-18T08:17:08.686Z"
}