API Documentation

⌘K
GET/api/1/equity/overview/{identifier}

Company Overview API

Returns a comprehensive company overview combining profile data, key financial ratios (P/E, P/S, dividend yield), 52-week price range, fair value, and market data in a single response

Parameters

1
identifierstringrequired
path

Security identifier: ISIN, ticker, CUSIP, SEDOL, or WKN

Responses

Was this helpful?
Request
curl -X GET \
  'https://api.eulerpool.com/api/1/equity/overview/US0378331005' \
  -H 'Accept: application/json'
200 Response
{
  "isin": "string",
  "ticker": "string",
  "name": "string",
  "description": "string",
  "currency": "string",
  "country": "string",
  "sector": "string",
  "industry": "string",
  "website": "string",
  "ipo": "string",
  "employees": 0,
  "marketCap": 0,
  "sharesOutstanding": 0,
  "price": 0,
  "week52High": 0,
  "week52Low": 0,
  "pe": 0,
  "ps": 0,
  "dividendYield": 0,
  "fairValueIncome": 0,
  "fairValueRevenue": 0,
  "aaqs": 0
}