Skip to main content
GET
/
financials
/
income-statements
Get income statements
curl --request GET \
  --url https://api.aisa.one/apis/v1/financial/financials/income-statements \
  --header 'Authorization: Bearer <token>'
{
  "income_statements": [
    {
      "ticker": "<string>",
      "report_period": "2023-12-25",
      "fiscal_period": "<string>",
      "period": "quarterly",
      "currency": "<string>",
      "revenue": 123,
      "cost_of_revenue": 123,
      "gross_profit": 123,
      "operating_expense": 123,
      "selling_general_and_administrative_expenses": 123,
      "research_and_development": 123,
      "operating_income": 123,
      "interest_expense": 123,
      "ebit": 123,
      "income_tax_expense": 123,
      "net_income_discontinued_operations": 123,
      "net_income_non_controlling_interests": 123,
      "net_income": 123,
      "net_income_common_stock": 123,
      "preferred_dividends_impact": 123,
      "consolidated_income": 123,
      "earnings_per_share": 123,
      "earnings_per_share_diluted": 123,
      "dividends_per_common_share": 123,
      "weighted_average_shares": 123,
      "weighted_average_shares_diluted": 123
    }
  ]
}

Authorizations

Authorization
string
header
required

Bearer authentication header of the form Bearer <token>, where <token> is your auth token.

Query Parameters

ticker
string
required

The ticker symbol.

period
enum<string>
required

The time period of the income statements.

Available options:
annual,
quarterly,
ttm
limit
integer<int32>

The maximum number of income statements to return.

cik
string

The Central Index Key (CIK) of the company.

Response

Income statements response

income_statements
object[]