Lubowitz - Schulist Corp.
- symbol
- POHI
- name
- Lubowitz - Schulist Corp.
- exchange
- NYSE
- sector
- Materials
- marketCap
- 3411034432244
- price
- 2165.53
- priceChangePercent24h
- 13.13
- volume24h
- 72289355
- createdAt
Overview
stocks / #97
Request
curl example
curl -sS \ "https://example-data.com/api/v1/stocks/97" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/stocks/97" ); 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/97"
);
const stock = (await res.json()) as Stock; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/stocks/97"
)
stock = res.json() Response
{
"id": 97,
"symbol": "POHI",
"name": "Lubowitz - Schulist Corp.",
"exchange": "NYSE",
"sector": "Materials",
"marketCap": 3411034432244,
"price": 2165.53,
"priceChangePercent24h": 13.13,
"volume24h": 72289355,
"createdAt": "2024-11-29T18:57:01.967Z"
}