Skip to main content
GET
/
v1
/
financials
/
ratios
Get Financial Ratios
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"
}

Documentation Index

Fetch the complete documentation index at: https://finance.dev/llms.txt

Use this file to discover all available pages before exploring further.

Authorizations

Authorization
string
header
required

OAuth2 Bearer token: obtain an access token from the token endpoint and send it in the Authorization header.

Query Parameters

tickers
string

Single ticker symbol filter. Enter one ticker such as AAPL to narrow results to one company.

Example:

"AAPL"

tickersAnyOf
string

Comma-separated list of ticker symbols.

Example:

"AAPL,MSFT,GOOG"

tickerAfter
string

Ticker pagination lower bound. Returns symbols alphabetically after this ticker, excluding the ticker itself.

tickerFrom
string

Ticker greater than or equal (inclusive)

tickerBefore
string

Ticker pagination upper bound. Returns symbols alphabetically before this ticker, excluding the ticker itself.

tickerTo
string

Ticker less than or equal (inclusive)

cik
string

CIK company identifier from the SEC. Use this when filtering by SEC registrant instead of ticker.

ciks
string

Comma-separated SEC CIK identifiers. Use this to filter several registrants in one request.

cikAfter
string

CIK pagination lower bound. Returns records with CIK values greater than this value, excluding the value itself.

cikFrom
string

CIK greater than or equal (inclusive)

cikBefore
string

CIK pagination upper bound. Returns records with CIK values less than this value, excluding the value itself.

cikTo
string

CIK upper-bound filter. Returns records with CIK values less than or equal to this value.

price
number<double>

Exact price filter. Use it when you need records matching one specific price value.

priceAbove
number<double>

Price lower-bound filter. Returns records above this value, excluding the value itself.

priceMin
number<double>

Price greater than or equal (inclusive)

priceBelow
number<double>

Price upper-bound filter. Returns records below this value, excluding the value itself.

priceMax
number<double>

Price less than or equal (inclusive)

averageVolume
number<double>

Exact average-volume filter. Use it when screening for one specific average volume value.

averageVolumeAbove
number<double>

Average volume greater than (exclusive)

averageVolumeMin
number<double>

Average volume greater than or equal (inclusive)

averageVolumeBelow
number<double>

Average volume less than (exclusive)

averageVolumeMax
number<double>

Average volume less than or equal (inclusive)

marketCap
number<double>

Exact market-cap filter. Use it when screening for one specific company size value.

marketCapAbove
number<double>

Market cap greater than (exclusive)

marketCapMin
number<double>

Market cap greater than or equal (inclusive)

marketCapBelow
number<double>

Market-cap upper-bound filter. Returns companies below this value, excluding the value itself.

marketCapMax
number<double>

Market cap less than or equal (inclusive)

eps
number<double>

Exact earnings-per-share filter. Use it when screening for one EPS value.

epsAbove
number<double>

EPS lower-bound filter. Returns companies with EPS above this value, excluding the value itself.

epsMin
number<double>

EPS greater than or equal (inclusive)

epsBelow
number<double>

EPS upper-bound filter. Returns companies with EPS below this value, excluding the value itself.

epsMax
number<double>

EPS upper-bound filter. Returns companies with EPS less than or equal to this value.

peRatio
number<double>

Exact price-to-earnings ratio filter. Use it when screening for one valuation value.

peRatioAbove
number<double>

P/E ratio lower-bound filter. Returns companies above this valuation, excluding the value itself.

peRatioMin
number<double>

P/E ratio greater than or equal (inclusive)

peRatioBelow
number<double>

P/E ratio upper-bound filter. Returns companies below this valuation, excluding the value itself.

peRatioMax
number<double>

P/E ratio less than or equal (inclusive)

pbRatio
number<double>

Exact price-to-book ratio filter. Use it when screening for one valuation value.

pbRatioAbove
number<double>

P/B ratio lower-bound filter. Returns companies above this valuation, excluding the value itself.

pbRatioMin
number<double>

P/B ratio greater than or equal (inclusive)

pbRatioBelow
number<double>

P/B ratio upper-bound filter. Returns companies below this valuation, excluding the value itself.

pbRatioMax
number<double>

P/B ratio less than or equal (inclusive)

psRatio
number<double>

Exact price-to-sales ratio filter. Use it when screening for one valuation value.

psRatioAbove
number<double>

P/S ratio lower-bound filter. Returns companies above this valuation, excluding the value itself.

psRatioMin
number<double>

P/S ratio greater than or equal (inclusive)

psRatioBelow
number<double>

P/S ratio upper-bound filter. Returns companies below this valuation, excluding the value itself.

psRatioMax
number<double>

P/S ratio less than or equal (inclusive)

pcfRatio
number<double>

Exact price-to-cash-flow ratio filter. Use it when screening for one valuation value.

pcfRatioAbove
number<double>

P/CF ratio greater than (exclusive)

pcfRatioMin
number<double>

P/CF ratio greater than or equal (inclusive)

pcfRatioBelow
number<double>

P/CF ratio upper-bound filter. Returns companies below this valuation, excluding the value itself.

pcfRatioMax
number<double>

P/CF ratio less than or equal (inclusive)

limit
integer

Maximum number of results to return. Use smaller values for UI pages and larger values for exports within API limits.

Required range: x >= 1
sort
string

Field used to sort results. Enter one of the sort fields supported by this endpoint.

next
string

Pagination cursor from the previous response. Omit it on the first request, then send the returned cursor to fetch the next page.

Response

Successful response

results
object[]
status
string
requestId
string