Koepp, Padberg and Jerde Corp.
- symbol
- PQ
- name
- Koepp, Padberg and Jerde Corp.
- exchange
- NYSE
- sector
- Consumer Discretionary
- marketCap
- 2351819439038
- price
- 1326.54
- priceChangePercent24h
- -5.83
- volume24h
- 25586149
- createdAt
Overview
stocks / #58
Request
curl example
curl -sS \ "https://example-data.com/api/v1/stocks/58" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/stocks/58" ); 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/58"
);
const stock = (await res.json()) as Stock; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/stocks/58"
)
stock = res.json() Response
{
"id": 58,
"symbol": "PQ",
"name": "Koepp, Padberg and Jerde Corp.",
"exchange": "NYSE",
"sector": "Consumer Discretionary",
"marketCap": 2351819439038,
"price": 1326.54,
"priceChangePercent24h": -5.83,
"volume24h": 25586149,
"createdAt": "2024-05-28T11:17:12.412Z"
}