Zieme - Walter Corp.
- symbol
- ZR
- name
- Zieme - Walter Corp.
- exchange
- LSE
- sector
- Utilities
- marketCap
- 3431765807234
- price
- 1422.25
- priceChangePercent24h
- -3.07
- volume24h
- 40494542
- createdAt
Overview
stocks / #65
Zieme - Walter Corp.
#65
Request
curl example
curl -sS \ "https://example-data.com/api/v1/stocks/65" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/stocks/65" ); 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/65"
);
const stock = (await res.json()) as Stock; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/stocks/65"
)
stock = res.json() Response
{
"id": 65,
"symbol": "ZR",
"name": "Zieme - Walter Corp.",
"exchange": "LSE",
"sector": "Utilities",
"marketCap": 3431765807234,
"price": 1422.25,
"priceChangePercent24h": -3.07,
"volume24h": 40494542,
"createdAt": "2025-02-03T13:27:51.384Z"
}