Skip to main content
GET
/
v1
/
financials
/
statements
Get Financial Statements
curl --request GET \
  --url https://api.aries.com/v1/financials/statements \
  --header 'Authorization: Bearer <token>'
{
  "data": {
    "financials": [
      {
        "costOfGoodsSold": 505.765,
        "dilutedAverageSharesOutstanding": 13410.208,
        "dilutedEPS": 0.01,
        "ebit": 129.639,
        "grossIncome": 477.004,
        "interestIncomeExpense": 0,
        "netIncome": 76.714,
        "netIncomeAfterTaxes": 76.714,
        "nonRecurringItems": 0,
        "period": "1983-09-30",
        "pretaxIncome": 146.122,
        "provisionforIncomeTaxes": 69.408,
        "researchDevelopment": 60.04,
        "revenue": 982.769,
        "sgaExpense": 287.325,
        "totalOperatingExpense": 347.365,
        "totalOtherIncomeExpenseNet": 16.483,
        "year": 1983
      }
    ],
    "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 symbol, such as AAPL. Required to choose the company you want to research.

statement
enum<string>
required

Financial statement type to return. Required; choose the statement category your analysis needs. Statement: bs (balance sheet), ic (income), cf (cash flow).

Available options:
bs,
ic,
cf
Example:

"ic"

freq
enum<string>
required

Reporting frequency to return. Required; use annual or quarterly based on your analysis view. How often the underlying data is reported:

  • annual — once per fiscal year (10-K, full-year statements).
  • quarterly — once per fiscal quarter (10-Q, quarterly statements).
Available options:
annual,
quarterly
Example:

"quarterly"

preliminary
boolean

Include preliminary data (optional boolean).

Response

Financial statements data.

Financial statements response