Stehr, Walker and Powlowski Corp.
- symbol
- ZR
- name
- Stehr, Walker and Powlowski Corp.
- exchange
- NASDAQ
- sector
- Industrials
- marketCap
- 13559841500675
- price
- 3498.97
- priceChangePercent24h
- -5.34
- volume24h
- 99007551
- createdAt
Overview
stocks / #56
Request
curl example
curl -sS \ "https://example-data.com/api/v1/stocks/56" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/stocks/56" ); 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/56"
);
const stock = (await res.json()) as Stock; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/stocks/56"
)
stock = res.json() Response
{
"id": 56,
"symbol": "ZR",
"name": "Stehr, Walker and Powlowski Corp.",
"exchange": "NASDAQ",
"sector": "Industrials",
"marketCap": 13559841500675,
"price": 3498.97,
"priceChangePercent24h": -5.34,
"volume24h": 99007551,
"createdAt": "2024-11-15T19:01:37.647Z"
}