API Documentation

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

Financial Metrics & Ratios API

Returns 40+ computed financial ratios for the given ISIN: valuation (P/E, P/B, P/S, EV/EBITDA), profitability (ROE, ROA, ROIC, margins), per-share data (EPS, BPS, SPS, DPS), leverage (D/E, current ratio), and growth rates (3Y, 5Y, 10Y revenue/earnings/EBIT growth)

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/metrics/US0378331005' \
  -H 'Accept: application/json'
200 Response
{
  "isin": "US0378331005",
  "ticker": "AAPL",
  "currency": "USD",
  "valuation": {
    "pe": 28.5,
    "ps": 7.2,
    "pb": 45.1,
    "pebit": 22.3,
    "evEbitda": 19.8,
    "marketCap": 0,
    "enterpriseValue": 0
  },
  "profitability": {
    "roe": 147.5,
    "roa": 28.3,
    "roic": 45.2,
    "roce": 55.1,
    "grossMargin": 45.2,
    "operatingMargin": 30.1,
    "netMargin": 25.3
  },
  "perShare": {
    "eps": 6.13,
    "sps": 24.32,
    "bps": 3.95,
    "dps": 0.96,
    "dividendYield": 0.55
  },
  "leverage": {
    "debtToEquity": 1.87,
    "netDebt": 0,
    "currentRatio": 0.99
  },
  "growth": {
    "revenueGrowth3Y": 8.5,
    "revenueGrowth5Y": 11.2,
    "earningsGrowth3Y": 12.1,
    "earningsGrowth5Y": 15.8
  },
  "other": {
    "shares": 0,
    "employees": 0,
    "aaqs": 0
  },
  "historical": []
}