API Documentation

⌘K
GET/api/1/fundamentals/financials/{identifier}/ratios

Financial Ratios

Computes key financial ratios (P/E, P/B, Debt/Equity, ROE, profit margin) from SEC XBRL data. Requires a current stock price via the price query parameter for market-based ratios.

Parameters

2
pricenumber
query

Current stock price (required for P/E, P/B)

identifierstringrequired
path

Security identifier: ISIN, ticker, CUSIP, SEDOL, or WKN (e.g. US0378331005, AAPL, 037833100)

Responses

Was this helpful?
Request
curl -X GET \
  'https://api.eulerpool.com/api/1/fundamentals/financials/US0378331005/ratios' \
  -H 'Accept: application/json'
200 Response
{
  "ticker": "string",
  "fiscal_year": null,
  "pe_ratio": 0,
  "pb_ratio": 0,
  "debt_to_equity": 0,
  "roe": 0,
  "profit_margin": 0
}