Rogahn - Runolfsson Corp.
- symbol
- QA
- name
- Rogahn - Runolfsson Corp.
- exchange
- NASDAQ
- sector
- Financials
- marketCap
- 7169626158605
- price
- 4084.21
- priceChangePercent24h
- -1.25
- volume24h
- 66024666
- createdAt
Overview
stocks / #77
Request
curl example
curl -sS \ "https://example-data.com/api/v1/stocks/77" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/stocks/77" ); const stock = await res.json();
TypeScript example
// Download once: mkdir -p types && curl -o types/stocks.d.ts https://example-data.com/types/stocks.d.ts
import type { Stock } from "./types/stocks";
const res = await fetch(
"https://example-data.com/api/v1/stocks/77"
);
const stock = (await res.json()) as Stock; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/stocks/77"
)
stock = res.json() Response
{
"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"
}