Logo
AXION

Financials Series

Financial Time Series

Line-item history as clean time series: assets, liabilities, equity, revenue, income, cash flow and share counts, ready for modelling.

Assets - Series API

GET/financials/:ticker/total/assets

Returns total assets as reported on the balance sheet at the end of each fiscal year.

Path Parameters

ParameterTypeRequiredDescription
tickerstringRequiredStock ticker symbol

Query Parameters

ParameterTypeRequiredDescription
periodsintegerOptionalNumber of fiscal years to return (default: 1).

Examples:

https://api.axionquant.com/financials/AAPL/total/assets
https://api.axionquant.com/financials/AAPL/total/assets?periods=3

Response

[number, number, ...]

Year-end total assets.

|

Total Assets (Apple, 4 periods)

Request

Sample code
1from axion import Axion
2client = Axion(api_key='axn_123')
3
4total_assets = client.financials.total_assets('AAPL', periods=4)
5print(total_assets)

Response

[
  379297000000,
  359241000000,
  359241000000,
  331495000000
]
GET/financials/:ticker/current/assets

Returns current assets (cash, receivables, inventory, etc.) at fiscal year-end.

Path Parameters

ParameterTypeRequiredDescription
tickerstringRequiredStock ticker symbol

Query Parameters

ParameterTypeRequiredDescription
periodsintegerOptionalNumber of fiscal years to return (default: 1).

Examples:

https://api.axionquant.com/financials/AAPL/current/assets
https://api.axionquant.com/financials/AAPL/current/assets?periods=3

Response

[number, number, ...]

Year-end current assets.

|

Current Assets (Apple, 4 periods)

Request

Sample code
1from axion import Axion
2client = Axion(api_key='axn_123')
3
4current_assets = client.financials.current_assets('AAPL', periods=4)
5print(current_assets)

Response

[
  158104000000,
  147957000000,
  147957000000,
  122491000000
]