Logo
AXION

Financials

Financial Statements & Metrics

Statement-level financials plus derived analytics: snapshots, calculated metrics, DCF valuation and historical valuation ratios, normalised for cross-company comparison.

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"
}