Medhurst - Hirthe Corp.
- symbol
- EJIQ
- name
- Medhurst - Hirthe Corp.
- exchange
- NYSE
- sector
- Industrials
- marketCap
- 1709353776504
- price
- 549.38
- priceChangePercent24h
- 10.87
- volume24h
- 53232587
- createdAt
Overview
stocks / #42
Medhurst - Hirthe Corp.
#42
Request
curl example
curl -sS \ "https://example-data.com/api/v1/stocks/42" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/stocks/42" ); 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/42"
);
const stock = (await res.json()) as Stock; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/stocks/42"
)
stock = res.json() Response
{
"id": 42,
"symbol": "EJIQ",
"name": "Medhurst - Hirthe Corp.",
"exchange": "NYSE",
"sector": "Industrials",
"marketCap": 1709353776504,
"price": 549.38,
"priceChangePercent24h": 10.87,
"volume24h": 53232587,
"createdAt": "2026-03-09T15:39:01.840Z"
}