curl --request GET \
--url https://api.aries.com/v1/financials/ratios \
--header 'Authorization: Bearer <token>'{
"results": [
{
"ticker": "AAPL",
"cik": "0000320193",
"date": "2025-12-24",
"price": 273.81,
"averageVolume": 45872477,
"marketCap": 4045913214930,
"earningsPerShare": 7.58,
"priceToEarnings": 36.12,
"priceToBook": 54.87,
"priceToSales": 9.72,
"priceToCashFlow": 36.29,
"priceToFreeCashFlow": 40.96,
"dividendYield": 0.0038,
"returnOnAssets": 0.3118,
"returnOnEquity": 1.5191,
"debtToEquity": 1.34,
"current": 0.89,
"quick": 0.86,
"cash": 0.22,
"evToSales": 9.87,
"evToEbitda": 28.38,
"enterpriseValue": 4108636214930,
"freeCashFlow": 98767000000
}
],
"status": "OK",
"requestId": "1fd04d305f74456cb3b304b705572a2c"
}Retrieve calculated financial ratios including liquidity, profitability, leverage, and efficiency metrics. Compare company performance against industry standards.
Use Case: Screen for companies with current ratio above 2.0 and debt-to-equity below 0.5 for stability.
curl --request GET \
--url https://api.aries.com/v1/financials/ratios \
--header 'Authorization: Bearer <token>'{
"results": [
{
"ticker": "AAPL",
"cik": "0000320193",
"date": "2025-12-24",
"price": 273.81,
"averageVolume": 45872477,
"marketCap": 4045913214930,
"earningsPerShare": 7.58,
"priceToEarnings": 36.12,
"priceToBook": 54.87,
"priceToSales": 9.72,
"priceToCashFlow": 36.29,
"priceToFreeCashFlow": 40.96,
"dividendYield": 0.0038,
"returnOnAssets": 0.3118,
"returnOnEquity": 1.5191,
"debtToEquity": 1.34,
"current": 0.89,
"quick": 0.86,
"cash": 0.22,
"evToSales": 9.87,
"evToEbitda": 28.38,
"enterpriseValue": 4108636214930,
"freeCashFlow": 98767000000
}
],
"status": "OK",
"requestId": "1fd04d305f74456cb3b304b705572a2c"
}Was this page helpful?