Weimann - Kris Corp.
- symbol
- NZGK
- name
- Weimann - Kris Corp.
- exchange
- NYSE
- sector
- Utilities
- marketCap
- 1340482530903
- price
- 2044.3
- priceChangePercent24h
- -0.34
- volume24h
- 74940875
- createdAt
Overview
stocks / #32
Weimann - Kris Corp.
#32
Request
curl example
curl -sS \ "https://example-data.com/api/v1/stocks/32" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/stocks/32" ); 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/32"
);
const stock = (await res.json()) as Stock; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/stocks/32"
)
stock = res.json() Response
{
"id": 32,
"symbol": "NZGK",
"name": "Weimann - Kris Corp.",
"exchange": "NYSE",
"sector": "Utilities",
"marketCap": 1340482530903,
"price": 2044.3,
"priceChangePercent24h": -0.34,
"volume24h": 74940875,
"createdAt": "2026-05-20T03:00:14.242Z"
}