Logo
AXION

Filings List Forms

GET/filings/list/forms

Returns a flat array of supported SEC form type strings (including "all"). This endpoint does not require any authentication or parameters and is useful for building dropdown menus or validating form type inputs.

Examples:

https://api.axionquant.com/filings/list/forms

Response

The response is a flat array of strings representing supported SEC form types. The first element is always "all" which can be used in other endpoints to include all form types.

[0]

"all" — wildcard for all form types

[1..n]

Individual SEC form codes (e.g., "10-K", "4", "NPORT-P")

|

Available Forms

Request

Sample code
1from axion import Axion
2client = Axion(api_key='axn_123')
3
4forms = client.filings.list_forms()
5print(forms)

Response

[
  "all",
  "10-K",
  "10-Q",
  "8-K",
  "4",
  "3",
  "S-1",
  "S-3",
  "DEF 14A",
  "13F-HR",
  "SC 13G",
  "SC 13D",
  "144",
  "NPORT-P",
  "NPORT-EX"
]

Financials API

The Financials API provides direct access to company financial statements and key performance metrics. Retrieve historical income statement, balance sheet, and cash flow data for publicly traded companies. All financial figures are sourced from SEC filings and are presented in the company's reporting currency. The API supports multi-period requests to enable trend analysis.

GET/financials/:ticker/snapshot

Returns a real-time financial snapshot including current stock price, analyst targets, key valuation metrics, and profitability ratios. Data is sourced from market data feeds and may be delayed by up to 15 minutes.

Path Parameters

ParameterTypeRequiredDescription
tickerstringRequiredStock ticker symbol

Examples:

https://api.axionquant.com/financials/AAPL/snapshot
https://api.axionquant.com/financials/MSFT/snapshot

Key Response Fields

currentPrice

Latest trading price

targetHighPrice, targetLowPrice, targetMeanPrice, targetMedianPrice

Analyst price targets

recommendationMean, recommendationKey, numberOfAnalystOpinions

Analyst consensus (1=Strong Buy, 5=Strong Sell)

totalCash, totalCashPerShare

Cash and cash equivalents

ebitda, totalDebt, totalRevenue

Key income statement items

quickRatio, currentRatio, debtToEquity

Liquidity and leverage ratios

returnOnAssets, returnOnEquity

Profitability metrics

freeCashflow, operatingCashflow

Cash flow metrics

earningsGrowth, revenueGrowth

Year-over-year growth rates

grossMargins, ebitdaMargins, operatingMargins, profitMargins

Profit margin percentages

financialCurrency

Reporting currency (usually USD)

|

Financial Snapshot (Apple)

Request

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

Response

{
  "currentPrice": 272.19,
  "targetHighPrice": 350,
  "targetLowPrice": 215,
  "targetMeanPrice": 287.70682,
  "targetMedianPrice": 300,
  "recommendationMean": 2,
  "recommendationKey": "buy",
  "numberOfAnalystOpinions": 41,
  "totalCash": 54697000960,
  "totalCashPerShare": 3.702,
  "ebitda": 144748003328,
  "totalDebt": 112377004032,
  "quickRatio": 0.771,
  "currentRatio": 0.893,
  "totalRevenue": 416161005568,
  "debtToEquity": 152.411,
  "revenuePerShare": 27.84,
  "returnOnAssets": 0.22964,
  "returnOnEquity": 1.7142199,
  "grossProfits": 195201007616,
  "freeCashflow": 78862254080,
  "operatingCashflow": 111482003456,
  "earningsGrowth": 0.912,
  "revenueGrowth": 0.079,
  "grossMargins": 0.46905,
  "ebitdaMargins": 0.34782,
  "operatingMargins": 0.31647,
  "profitMargins": 0.26915002,
  "financialCurrency": "USD"
}
GET/financials/:ticker/metrics

Returns a comprehensive set of the most recent annual financial figures and derived ratios. All values are for the latest fiscal year. Response fields are converted to camelCase.

Path Parameters

ParameterTypeRequiredDescription
tickerstringRequiredStock ticker symbol

Examples:

https://api.axionquant.com/financials/AAPL/metrics
https://api.axionquant.com/financials/MSFT/metrics

Key Response Fields

revenue

Annual total revenue

netIncome

Annual net income

totalAssets, totalLiabilities, stockholdersEquity

Year-end balance sheet figures

currentAssets, currentLiabilities

Year-end current assets and liabilities

operatingCashFlow, capitalExpenditures, freeCashFlow

Cash flow metrics

sharesOutstandingBasic, sharesOutstandingDiluted

Weighted-average shares

currentRatio, debtToAssets

Derived financial ratios

|

Financial Metrics (Apple)

Request

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

Response

{
  "revenue": 143756000000,
  "netIncome": 42097000000,
  "totalAssets": 379297000000,
  "totalLiabilities": 291107000000,
  "stockholdersEquity": 88190000000,
  "currentAssets": 158104000000,
  "currentLiabilities": 162367000000,
  "operatingCashFlow": 53925000000,
  "capitalExpenditures": 2373000000,
  "freeCashFlow": 51552000000,
  "sharesOutstandingBasic": 14748158000,
  "sharesOutstandingDiluted": 14810356000,
  "currentRatio": 0.973744664864166,
  "debtToAssets": 0.76749091081659
}