Skip to main content
GET
/
v1
/
company
/
metrics
Get Company Financial Metrics
curl --request GET \
  --url https://api.aries.com/v1/company/metrics \
  --header 'Authorization: Bearer <token>'
{
  "series": {
    "annual": {
      "currentRatio": [
        {
          "period": "2019-09-28",
          "v": 1.5401
        },
        {
          "period": "2018-09-29",
          "v": 1.1329
        }
      ],
      "salesPerShare": [
        {
          "period": "2019-09-28",
          "v": 55.9645
        },
        {
          "period": "2018-09-29",
          "v": 53.1178
        }
      ],
      "netMargin": [
        {
          "period": "2019-09-28",
          "v": 0.2124
        },
        {
          "period": "2018-09-29",
          "v": 0.2241
        }
      ]
    }
  },
  "metric": {
    "10DayAverageTradingVolume": 32.50147,
    "52WeekHigh": 310.43,
    "52WeekLow": 149.22,
    "52WeekLowDate": "2019-01-14",
    "52WeekPriceReturnDaily": 101.96334,
    "beta": 1.2989
  },
  "metricType": "all",
  "symbol": "AAPL"
}

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

symbol
string
required

Stock ticker symbol to research, such as AAPL. Required for this endpoint.

Example:

"AAPL"

metric
enum<string>
required

Which metric group to return. Currently only all is supported — it returns every available metric for the symbol. Required.

Available options:
all
Example:

"all"

Response

Successful response

Basic financial metrics for company research. Use these values for valuation, profitability, and balance-sheet trend displays.

series
object

Time series data for various financial metrics

metric
object

Current financial metrics and ratios (dynamic object with various metric keys)

metricType
string

Type of metrics returned (all, price, valuation, margin)

symbol
string

Stock ticker symbol these financial metrics belong to. Use it to match the metrics back to the requested company.