Schinner Group Corp.
- symbol
- WSAI
- name
- Schinner Group Corp.
- exchange
- NYSE
- sector
- Consumer Staples
- marketCap
- 223860799719
- price
- 130.59
- priceChangePercent24h
- 7.63
- volume24h
- 87456260
- createdAt
Overview
stocks / #57
Schinner Group Corp.
#57
Request
curl example
curl -sS \ "https://example-data.com/api/v1/stocks/57" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/stocks/57" ); 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/57"
);
const stock = (await res.json()) as Stock; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/stocks/57"
)
stock = res.json() Response
{
"id": 57,
"symbol": "WSAI",
"name": "Schinner Group Corp.",
"exchange": "NYSE",
"sector": "Consumer Staples",
"marketCap": 223860799719,
"price": 130.59,
"priceChangePercent24h": 7.63,
"volume24h": 87456260,
"createdAt": "2024-12-25T02:47:58.220Z"
}