Donnelly, Hand and Wolff Corp.
- symbol
- YJ
- name
- Donnelly, Hand and Wolff Corp.
- exchange
- TSX
- sector
- Technology
- marketCap
- 6294920534102
- price
- 4249.56
- priceChangePercent24h
- -13.09
- volume24h
- 1147636
- createdAt
Overview
stocks / #55
Request
curl example
curl -sS \ "https://example-data.com/api/v1/stocks/55" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/stocks/55" ); 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/55"
);
const stock = (await res.json()) as Stock; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/stocks/55"
)
stock = res.json() Response
{
"id": 55,
"symbol": "YJ",
"name": "Donnelly, Hand and Wolff Corp.",
"exchange": "TSX",
"sector": "Technology",
"marketCap": 6294920534102,
"price": 4249.56,
"priceChangePercent24h": -13.09,
"volume24h": 1147636,
"createdAt": "2025-04-05T08:21:28.125Z"
}