Dicki, McLaughlin and Durgan Corp.
- symbol
- GRK
- name
- Dicki, McLaughlin and Durgan Corp.
- exchange
- TSX
- sector
- Technology
- marketCap
- 4532301426622
- price
- 3664.54
- priceChangePercent24h
- 6.18
- volume24h
- 49600985
- createdAt
Overview
stocks / #36
Request
curl example
curl -sS \ "https://example-data.com/api/v1/stocks/36" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/stocks/36" ); 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/36"
);
const stock = (await res.json()) as Stock; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/stocks/36"
)
stock = res.json() Response
{
"id": 36,
"symbol": "GRK",
"name": "Dicki, McLaughlin and Durgan Corp.",
"exchange": "TSX",
"sector": "Technology",
"marketCap": 4532301426622,
"price": 3664.54,
"priceChangePercent24h": 6.18,
"volume24h": 49600985,
"createdAt": "2025-02-09T09:29:45.667Z"
}