Hilpert - Bartell Corp.
- symbol
- PLU
- name
- Hilpert - Bartell Corp.
- exchange
- NYSE
- sector
- Technology
- marketCap
- 3256315549206
- price
- 1140.76
- priceChangePercent24h
- 5.51
- volume24h
- 24732110
- createdAt
Overview
stocks / #68
Hilpert - Bartell Corp.
#68
Request
curl example
curl -sS \ "https://example-data.com/api/v1/stocks/68" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/stocks/68" ); 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/68"
);
const stock = (await res.json()) as Stock; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/stocks/68"
)
stock = res.json() Response
{
"id": 68,
"symbol": "PLU",
"name": "Hilpert - Bartell Corp.",
"exchange": "NYSE",
"sector": "Technology",
"marketCap": 3256315549206,
"price": 1140.76,
"priceChangePercent24h": 5.51,
"volume24h": 24732110,
"createdAt": "2025-01-21T05:43:01.863Z"
}