GET
/
securities
/
stock
/
financials
/
statements
Get financial statements for a specified stock
curl --request GET \
  --url https://openapi.ainvest.com/open/securities/stock/financials/statements \
  --header 'Authorization: Bearer <token>'
{
  "data": {
    "income_statements": [
      {
        "period": "<string>",
        "start_date": "<string>",
        "end_date": "<string>",
        "lines": [
          {
            "name": "<string>",
            "value": 123
          }
        ]
      }
    ],
    "cashflow_statements": [
      {
        "period": "<string>",
        "start_date": "<string>",
        "end_date": "<string>",
        "lines": [
          {
            "name": "<string>",
            "value": 123
          }
        ]
      }
    ],
    "balance_sheets": [
      {
        "period": "<string>",
        "start_date": "<string>",
        "end_date": "<string>",
        "lines": [
          {
            "name": "<string>",
            "value": 123
          }
        ]
      }
    ]
  },
  "status_code": 123,
  "status_msg": "<string>"
}
This API provides income statements, balance sheets, and cashflow statements. The data points are presented as name value pairs. The names are consistent across all items. Not all reports have the same data points, in this case the name still presents in the array but the value is null.

Income statements

name
Revenue
Sales and Services Revenue
Financing Services Revenue
Other Revenue
Cost of Revenue
Cost of Goods and Services
Cost of Financing Services
Other Cost
Gross Profit
Other Operating Income
Operating Expenses
Selling, General and Administrative Expenses
Selling and Marketing Expenses
General and Administrative Expenses
Research and Development Expenses
Loss on Bad Debts
Loss on Impairment of Other Assets
Loss on Disposal of Assets
Other Operating Expenses
Operating Income
Non-Operating Income (Loss)
Income (Loss) from Affiliates
Income (Loss) from Associates
Income (Loss) from Joint ventures
Gain (Loss) on Other Investment
Gain (Loss) on Change in Fair Value
Gain (Loss) on Foreign Currency Exchange
Other Non-Operating Income (Loss)
Net Interest Expense
Interest Expense
Interest Income
Pretax Income From Continuing Operations
Income Tax Expense
Current Income Tax
Deferred Income Tax
Income Tax Adjustments
Net Income from Continuing Operations
Income from Discontinued Operations
Other Items Before Net Income
Net Income
Net Income Attributable to Minority Interests
Net Income Attributable to Owners of the Company
Preferred Stock Dividends
Other Adjustments
Net Income Attributable to Common Stockholders
Other Comprehensive Income
Total Comprehensive Income
Total Comprehensive Income Attributable to Minority Interests
Total Comprehensive Income Attributable to Owners of the Company
Basic EPS
Basic EPS from Continuing Operations
Basic EPS from Discontinued Operations
Diluted EPS
Diluted EPS from Continuing Operations
Diluted EPS from Discontinued Operations

Cashflow statements

name
Net Cash Flows from Operating Activities
Net Income
Depreciation and Amortization
Stock-based Compensation
Deferred Taxs
Interest Income(expense)
Impairment of Assets
Change in Working Capital
Change in Accounts Receivable
Change in Inventories
Change in Accounts Payable
Change in Prepaid Expenses
Change in Contract liabilities
Change in Deferred Revenue
Change in Other Working Capital
Other Non-cash Adjustments
Net Cash from Discontinued Operating Activities
Net Cash Flows from Investing Activities
Change in PPE and Intangible Assets
Disposal of PPE and Intangible Assets
Purchase of PPE and Intangible Assets
Change in Investments
Decrease in Investments
Increase in Investments
Change in long-term Equity Investments
Change in Associates and Joint Ventures
Change in Subsidiaries
Dividends Received
Interest Received
Other Investing Activities
Net Cash from Discontinued Investing Activities
Net Cash Flows from Financing Activities
Dividends Paid
Change in Debt
Issuance of Short-term Debt
Repayment of Short-term Debt
Issuance of long-term Debt
Repayment of long-term Debt
Change in Capital Stock
Increase in Capital Stock
Decrease in Capital Stock
Interest Paid
Other Financing Activities
Net Cash from Discontinued Financing Activities
Effect of Foreign Exchange Rate Changes
Other Accounts Affecting Net Increase in Cash and Cash Equivalents
Net Increase in Cash and Cash Equivalents
Cash and Cash Equivalents at Beginning of Period
Other Accounts that Affect the Ending Balance of Cash and Cash Equivalents
Cash and Cash Equivalents at End of Period

Balance sheets

name
Total Assets
Total Current Assets
Cash, Cash Equivalents and Short-term Investments
Cash and Cash Equivalents
Short-term Investments
Restricted Deposits and Cash
Receivables
Accounts and Notes Receivable
Income Taxes Receivable
Other Receivables
Amounts Due from Related Parties
Inventories
Raw Materials
Work in Process
Finished Goods
Other Inventory
Derivative Financial Assets(current)
Prepaid Expenses(current)
Assets Held for Sale
Contract Assets(current)
Other Current Assets
Total Non-current Assets
Property, Plant and Equipment, Net
Gross Property, Plant and Equipment
Accumulated Depreciation
Long-term Investments and Receivables
Long-term Investments
Long-term Receivables
Goodwill and Intangible Assets
Goodwill
Intangible Assets
Investment Properties
Derivative Financial Assets(non-current)
Prepaid Expenses(non-current)
Prepaid Pension Costs
Contract Assets(non-current)
Deferred Tax Assets
Investments in Affiliates
Investments in Associates
Investments in Joint Ventures
Other Non-current Assets
Total liabilities
Total Current Liabilities
Short-term Debt
Short-term Borrowings
Short-term Lease Liabilities
Current Portion of Long-term Debt
Amounts Due to Related Parties
Accounts and Notes Payable
Income taxes payable
Interest and Dividends Payable
Other Payables and Accruals
Amounts Due to Related Parties
Derivative Financial Liabilities(current)
Liabilities Held for Sale
Advances from customers(current)
Deferred Revenue(current)
Contract Liabilities(current)
Other Current Liabilities
Total Non-current Liabilities
Long-term debt
Long-term borrowings
Long-term Lease Liabilities
Accrued Liabilities
Pension Liabilities
Pensions
Other Post-ret Benefits
Deferred Compensation
Derivative Financial Liabilities(non-current)
Deferred Tax Liabilities
Advances from customers(non-current)
Deferred Revenue(non-current)
Contract Liabilities(non-current)
Other Non-current Liabilities
Total Equity
Equity Attributable to Minority Interests
Equity Attributable to Owners of the Company
Preferred Equity
Hybrid Capital
Equity Attributable to Common Stockholders
Pension Liabilities
Additional Paid in Capital
Retained Earnings
Treasury Stock
Accumulated Other Comprehensive Income
Other Equity of Common Stockholders
Total Liabilities and Equity

Authorizations

Authorization
string
header
required

Bearer authentication header of the form Bearer <token>, where <token> is your key. Get the key here

Query Parameters

ticker
string
required

US stock market ticker symbol, e.g. AAPL, TSLA, etc.

period
enum<integer>
required

The requested statement period. Possible values:

valuedescription
0Return each period
1First period of each year
2Mid-year report for each year
3Third quarter of each year
4Annual reports only
Available options:
0,
1,
2,
3,
4

Response

Successful response in standard envelope.

data
object
status_code
number

Status code, 0 for success

status_msg
string

Status message, success for success