Bergnaum Group Corp.
- symbol
- LPK
- name
- Bergnaum Group Corp.
- exchange
- TSX
- sector
- Communication Services
- marketCap
- 2869960984492
- price
- 3090.93
- priceChangePercent24h
- -1.81
- volume24h
- 40859925
- createdAt
Overview
stocks / #51
Bergnaum Group Corp.
#51
Request
curl example
curl -sS \ "https://example-data.com/api/v1/stocks/51" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/stocks/51" ); 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/51"
);
const stock = (await res.json()) as Stock; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/stocks/51"
)
stock = res.json() Response
{
"id": 51,
"symbol": "LPK",
"name": "Bergnaum Group Corp.",
"exchange": "TSX",
"sector": "Communication Services",
"marketCap": 2869960984492,
"price": 3090.93,
"priceChangePercent24h": -1.81,
"volume24h": 40859925,
"createdAt": "2024-08-15T12:10:28.835Z"
}