API Documentation
⌘K
API Key
Get free key GET
/api/1/fundamentals/financials/{identifier}/ratiosFinancial 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
2pricenumberCurrent stock price (required for P/E, P/B)
identifierstringrequiredSecurity 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
}