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/assetsReturns total assets as reported on the balance sheet at the end of each fiscal year.
Path Parameters
| Parameter | Type | Required | Description |
|---|---|---|---|
| ticker | string | Required | Stock ticker symbol |
Query Parameters
| Parameter | Type | Required | Description |
|---|---|---|---|
| periods | integer | Optional | Number of fiscal years to return (default: 1). |
Examples:
https://api.axionquant.com/financials/AAPL/total/assetshttps://api.axionquant.com/financials/AAPL/total/assets?periods=3Response
[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/assetsReturns current assets (cash, receivables, inventory, etc.) at fiscal year-end.
Path Parameters
| Parameter | Type | Required | Description |
|---|---|---|---|
| ticker | string | Required | Stock ticker symbol |
Query Parameters
| Parameter | Type | Required | Description |
|---|---|---|---|
| periods | integer | Optional | Number of fiscal years to return (default: 1). |
Examples:
https://api.axionquant.com/financials/AAPL/current/assetshttps://api.axionquant.com/financials/AAPL/current/assets?periods=3Response
[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
]