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"
  }
}

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

symbol
string
required

Stock symbol, such as AAPL. Required to choose the company you want to research.

statement
string
required

Financial statement type to return. Required; choose the statement category your analysis needs.

freq
string
required

Reporting frequency to return. Required; use annual or quarterly based on your analysis view.

preliminary
boolean

Include preliminary data (optional boolean).

Response

Financial statements data.

Financial statements response