Ebert Group Corp.
- symbol
- ER
- name
- Ebert Group Corp.
- exchange
- LSE
- sector
- Materials
- marketCap
- 10864048273599
- price
- 4773.58
- priceChangePercent24h
- -6.14
- volume24h
- 53285303
- createdAt
Overview
stocks / #35
Ebert Group Corp.
#35
Request
curl example
curl -sS \ "https://example-data.com/api/v1/stocks/35" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/stocks/35" ); 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/35"
);
const stock = (await res.json()) as Stock; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/stocks/35"
)
stock = res.json() Response
{
"id": 35,
"symbol": "ER",
"name": "Ebert Group Corp.",
"exchange": "LSE",
"sector": "Materials",
"marketCap": 10864048273599,
"price": 4773.58,
"priceChangePercent24h": -6.14,
"volume24h": 53285303,
"createdAt": "2024-09-08T22:43:16.359Z"
}