Logo
AXION

Financials Statements

GET/financials/statements/:ticker/balance

Returns the quarterly balance sheet for the specified company. Results default to the most recent quarter. Use the year and quarter query parameters to retrieve a specific period.

Path Parameters

ParameterTypeRequiredDescription
tickerstringRequiredStock ticker symbol (e.g., "AAPL", "MSFT")

Query Parameters

ParameterTypeRequiredDescription
yearintegerOptionalFiscal year (e.g., 2024). Defaults to the latest available year.
quarterintegerOptionalFiscal quarter (1–4). Defaults to the latest available quarter.

Examples:

https://api.axionquant.com/financials/statements/AAPL/balance
https://api.axionquant.com/financials/statements/AAPL/balance?year=2024&quarter=3

Response

A JSON object containing balance sheet line items in the company's reporting currency (typically USD). All monetary values are in raw units.

{ [key: string]: number | null }

Returns 60+ balance sheet fields including assets, liabilities, and equity.

|

Balance Sheet (Apple, latest quarter)

Request

Sample code
1from axion import Axion
2
3client = Axion(api_key='axn_123')
4
5balance = client.financials.balance_sheet(
6    'AAPL',
7    year='2024',
8    quarter='1',
9)
10print(balance)

Response

{
  "accountsPayable": 14696000000,
  "accountsReceivable": 3959000000,
  "accumulatedDepreciation": -21351000000,
  "additionalPaidInCapital": 44299000000,
  "capitalLeaseObligations": 6871000000,
  "capitalStock": 3000000,
  "cash": 14470000000,
  "cashAndCashEquivalents": 16603000000,
  "cashCashEquivalentsAndShortTermInvestments": 44743000000,
  "cashEquivalents": 2133000000,
  "commonStock": 3000000,
  "commonStockEquity": 84116000000,
  "constructionInProgress": 9629000000,
  "currentAccruedExpenses": 5065000000,
  "currentAssets": 69748000000,
  "currentCapitalLeaseObligation": 1061000000,
  "currentDebt": 1374000000,
  "currentDebtAndCapitalLeaseObligation": 2435000000,
  "currentDeferredLiabilities": 5183000000,
  "currentDeferredRevenue": 5183000000,
  "currentLiabilities": 34138000000,
  "currentProvisions": 3015000000,
  "finishedGoods": 6842000000,
  "gainsLossesNotAffectingRetainedEarnings": 334000000,
  "goodwill": null,
  "goodwillAndOtherIntangibleAssets": 786000000,
  "grossPpe": 79991000000,
  "inventory": 14434000000,
  "investedCapital": 93135000000,
  "investmentsAndAdvances": null,
  "landAndImprovements": 12558000000,
  "leases": 4608000000,
  "lineOfCredit": null,
  "longTermCapitalLeaseObligation": 5810000000,
  "longTermDebt": 7645000000,
  "longTermDebtAndCapitalLeaseObligation": 13455000000,
  "longTermProvisions": 6028000000,
  "machineryFurnitureEquipment": 29685000000,
  "minorityInterest": 686000000,
  "netPpe": 58640000000,
  "netTangibleAssets": 83330000000,
  "nonCurrentDeferredAssets": 7060000000,
  "nonCurrentDeferredLiabilities": 3847000000,
  "nonCurrentDeferredRevenue": 3847000000,
  "nonCurrentDeferredTaxesAssets": 7060000000,
  "ordinarySharesNumber": 3755000000,
  "otherCurrentAssets": 6612000000,
  "otherCurrentBorrowings": 1374000000,
  "otherCurrentLiabilities": 2131000000,
  "otherEquityAdjustments": 334000000,
  "otherIntangibleAssets": 786000000,
  "otherInventories": 1360000000,
  "otherInvestments": null,
  "otherNonCurrentAssets": 7490000000,
  "otherNonCurrentLiabilities": 1454000000,
  "otherProperties": 23511000000,
  "otherShortTermInvestments": 28140000000,
  "payables": 16309000000,
  "payablesAndAccruedExpenses": 21374000000,
  "preferredStock": null,
  "properties": null,
  "rawMaterials": 4310000000,
  "receivables": 3959000000,
  "retainedEarnings": 39480000000,
  "shareIssued": 3755000000,
  "stockholdersEquity": 84116000000,
  "tangibleBookValue": 83330000000,
  "totalAssets": 143724000000,
  "totalCapitalization": 91761000000,
  "totalDebt": 15890000000,
  "totalEquityGrossMinorityInterest": 84802000000,
  "totalLiabilitiesNetMinorityInterest": 58922000000,
  "totalNonCurrentAssets": 73976000000,
  "totalNonCurrentLiabilitiesNetMinorityInterest": 24784000000,
  "totalTaxPayable": 1613000000,
  "treasurySharesNumber": null,
  "workInProcess": 1922000000,
  "workingCapital": 35610000000
}
GET/financials/statements/:ticker/income

Returns the quarterly income statement for the specified company. Results default to the most recent quarter. Use the year and quarter query parameters to retrieve a specific period.

Path Parameters

ParameterTypeRequiredDescription
tickerstringRequiredStock ticker symbol (e.g., "AAPL", "MSFT")

Query Parameters

ParameterTypeRequiredDescription
yearintegerOptionalFiscal year (e.g., 2024). Defaults to the latest available year.
quarterintegerOptionalFiscal quarter (1–4). Defaults to the latest available quarter.

Examples:

https://api.axionquant.com/financials/statements/AAPL/income
https://api.axionquant.com/financials/statements/AAPL/income?year=2024&quarter=3

Response

A JSON object containing income statement line items in the company's reporting currency (typically USD).

{ [key: string]: number | null }

Returns revenue, expenses, earnings, and per-share data.

|

Income Statement (Apple, latest quarter)

Request

Sample code
1from axion import Axion
2
3client = Axion(api_key='axn_123')
4
5income = client.financials.income_statement(
6    'AAPL',
7    year='2024',
8    quarter='1',
9)
10print(income)

Response

{
  "averageDilutionEarnings": null,
  "basicAverageShares": 3229000000,
  "basicEps": 1.2,
  "costOfRevenue": 79218000000,
  "dilutedAverageShares": 3532250000,
  "dilutedEps": 1.09,
  "dilutedNiAvailtoComStockholders": 3862000000,
  "ebit": 5776000000,
  "ebitda": 12067000000,
  "grossProfit": 18661000000,
  "interestExpense": 339000000,
  "interestExpenseNonOperating": 339000000,
  "interestIncome": 1714000000,
  "interestIncomeNonOperating": 1714000000,
  "minorityInterests": -64000000,
  "netIncome": 3862000000,
  "netIncomeCommonStockholders": 3862000000,
  "netIncomeContinuousOperations": 3926000000,
  "netIncomeFromContinuingAndDiscontinuedOperation": 3862000000,
  "netIncomeFromContinuingOperationNetMinorityInterest": 3862000000,
  "netIncomeIncludingNoncontrollingInterests": 3926000000,
  "netInterestIncome": 1375000000,
  "netNonOperatingInterestIncomeExpense": 1375000000,
  "normalizedEbitda": 12467000000,
  "normalizedIncome": 4150835755.01,
  "operatingExpense": 13364000000,
  "operatingIncome": 5297000000,
  "operatingRevenue": 97879000000,
  "otherIncomeExpense": -1235000000,
  "otherNonOperatingIncomeExpenses": -835000000,
  "otherunderPreferredStockDividend": null,
  "pretaxIncome": 5437000000,
  "reconciledCostOfRevenue": 79218000000,
  "reconciledDepreciation": 6291000000,
  "rentExpenseSupplemental": 956000000,
  "researchAndDevelopment": 6948000000,
  "restructuringAndMergernAcquisition": 400000000,
  "sellingGenAdmin": 6416000000,
  "specialIncomeCharges": -400000000,
  "taxEffectOfUnusualItems": -111164244.99,
  "taxProvision": 1511000000,
  "taxRateForCalcs": 0.28,
  "totalExpenses": 92582000000,
  "totalOperatingIncomeAsReported": 4897000000,
  "totalRevenue": 97879000000,
  "totalUnusualItems": -400000000,
  "totalUnusualItemsExcludingGoodwill": -400000000
}
GET/financials/statements/:ticker/cashflow

Returns the quarterly cash flow statement for the specified company. Results default to the most recent quarter. Use the year and quarter query parameters to retrieve a specific period.

Path Parameters

ParameterTypeRequiredDescription
tickerstringRequiredStock ticker symbol (e.g., "AAPL", "MSFT")

Query Parameters

ParameterTypeRequiredDescription
yearintegerOptionalFiscal year (e.g., 2024). Defaults to the latest available year.
quarterintegerOptionalFiscal quarter (1–4). Defaults to the latest available quarter.

Examples:

https://api.axionquant.com/financials/statements/AAPL/cashflow
https://api.axionquant.com/financials/statements/AAPL/cashflow?year=2024&quarter=3

Response

A JSON object containing cash flow statement line items in the company's reporting currency (typically USD).

{ [key: string]: number | null }

Returns operating, investing, and financing cash flow data.

|

Cash Flow (Apple, latest quarter)

Request

Sample code
1from axion import Axion
2
3client = Axion(api_key='axn_123')
4
5cashflow = client.financials.cash_flow_statement(
6    'AAPL',
7    year='2024',
8    quarter='1',
9)
10print(cashflow)

Response

{
  "assetImpairmentCharge": 327000000,
  "beginningCashPosition": 17250000000,
  "capitalExpenditure": -9528000000,
  "capitalExpenditureReported": null,
  "cashFlowFromContinuingFinancingActivities": 2643000000,
  "cashFlowFromContinuingInvestingActivities": -18850000000,
  "cashFlowFromContinuingOperatingActivities": 16528000000,
  "changeInAccountPayable": 4376000000,
  "changeInInventory": -1181000000,
  "changeInOtherCurrentAssets": 225000000,
  "changeInOtherCurrentLiabilities": null,
  "changeInOtherWorkingCapital": 317000000,
  "changeInPayable": 4376000000,
  "changeInPayablesAndAccruedExpense": 5071000000,
  "changeInPrepaidAssets": -2531000000,
  "changeInReceivables": -330000000,
  "changeInWorkingCapital": 1571000000,
  "changesInAccountReceivables": -330000000,
  "changesInCash": 321000000,
  "commonStockIssuance": null,
  "deferredIncomeTax": 30000000,
  "deferredTax": 30000000,
  "depreciation": 6291000000,
  "depreciationAmortizationDepletion": 6291000000,
  "depreciationAndAmortization": 6291000000,
  "effectOfExchangeRateChanges": 84000000,
  "endCashPosition": 17571000000,
  "financingCashFlow": 2643000000,
  "freeCashFlow": 7000000000,
  "gainLossOnSaleOfPpe": 165000000,
  "incomeTaxPaidSupplementalData": 1331000000,
  "interestPaidSupplementalData": 292000000,
  "investingCashFlow": -18850000000,
  "issuanceOfCapitalStock": null,
  "issuanceOfDebt": 9292000000,
  "longTermDebtIssuance": 9292000000,
  "longTermDebtPayments": -7849000000,
  "netBusinessPurchaseAndSale": null,
  "netCommonStockIssuance": null,
  "netForeignCurrencyExchangeGainLoss": 709000000,
  "netIncomeFromContinuingOperations": 3926000000,
  "netIntangiblesPurchaseAndSale": null,
  "netInvestmentPurchaseAndSale": -9322000000,
  "netIssuancePaymentsOfDebt": 1443000000,
  "netLongTermDebtIssuance": 1443000000,
  "netOtherFinancingCharges": -34000000,
  "netOtherInvestingChanges": null,
  "netPpePurchaseAndSale": -9528000000,
  "operatingCashFlow": 16528000000,
  "operatingGainsLosses": 874000000,
  "otherNonCashItems": 227000000,
  "proceedsFromStockOptionExercised": 1234000000,
  "purchaseOfBusiness": null,
  "purchaseOfIntangibles": null,
  "purchaseOfInvestment": -41414000000,
  "purchaseOfPpe": -9528000000,
  "repaymentOfDebt": -7849000000,
  "saleOfBusiness": null,
  "saleOfIntangibles": null,
  "saleOfInvestment": 32092000000,
  "saleOfPpe": null,
  "stockBasedCompensation": 3282000000
}
GET/financials/dcf/:ticker/value

Returns a discounted cash flow (DCF) valuation for the specified company, including enterprise value, fair price, margin of safety, and a buy/sell recommendation.

Path Parameters

ParameterTypeRequiredDescription
tickerstringRequiredStock ticker symbol (e.g., "AAPL", "MSFT")

Examples:

https://api.axionquant.com/financials/dcf/AAPL/value
https://api.axionquant.com/financials/dcf/MSFT/value

Key Response Fields

enterpriseValue

Total enterprise value (market cap + debt - cash)

cash

Cash and cash equivalents

totalDebt

Total outstanding debt

equityValue

Equity value (enterprise value - debt + cash)

sharesOutstanding

Number of shares outstanding

fairPrice

Estimated fair value per share

currentPrice

Current market price per share

marginOfSafety

Percentage margin of safety (fair price vs. current price)

recommendation

Investment recommendation (Buy or Sell)

|

DCF Valuation (Apple)

Request

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

Response

{
  "enterpriseValue": 3953331149665.99,
  "cash": 68507000000,
  "totalDebt": 111088000000,
  "equityValue": 3910750149665.99,
  "sharesOutstanding": 14687356000,
  "fairPrice": 266.27,
  "currentPrice": 315.32,
  "marginOfSafety": -0.18,
  "recommendation": "Sell"
}
GET/financials/dcf/:ticker/rate

Returns the weighted average cost of capital (WACC) and supporting inputs for the specified company, including cost of equity, cost of debt, and capital structure weights.

Path Parameters

ParameterTypeRequiredDescription
tickerstringRequiredStock ticker symbol (e.g., "AAPL", "MSFT")

Examples:

https://api.axionquant.com/financials/dcf/AAPL/rate
https://api.axionquant.com/financials/dcf/MSFT/rate

Key Response Fields

marketCap

Market capitalization

beta5y

Five-year beta (stock volatility vs. market)

totalDebt

Total outstanding debt

interestExpense

Annual interest expense

pretaxIncome

Pre-tax income

taxProvision

Tax provision

riskFreeRate

Risk-free rate (10-year Treasury yield)

weightOfDebt

Weight of debt in capital structure

weightOfEquity

Weight of equity in capital structure

costOfDebt

After-tax cost of debt

costOfEquity

Cost of equity (CAPM)

taxRate

Effective tax rate

wacc

Weighted average cost of capital

|

Discount Rate / WACC (Apple)

Request

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

Response

{
  "marketCap": 4631217093920,
  "beta5y": 1.0839,
  "totalDebt": 111088000000,
  "interestExpense": 1002000000,
  "pretaxIncome": 26998000000,
  "taxProvision": 4042000000,
  "riskFreeRate": 0.0353,
  "weightOfDebt": 0.0234,
  "weightOfEquity": 0.9766,
  "costOfDebt": 0.009,
  "costOfEquity": 0.1054,
  "taxRate": 0.15,
  "wacc": 0.1031
}
GET/financials/:ticker/eps

Returns trailing twelve-month (TTM) earnings per share for the specified company, with each data point linked to an earnings report date.

Path Parameters

ParameterTypeRequiredDescription
tickerstringRequiredStock ticker symbol (e.g., "AAPL", "MSFT")

Query Parameters

ParameterTypeRequiredDescription
fromdateOptionalStart date (YYYY-MM-DD)
todateOptionalEnd date (YYYY-MM-DD)

Examples:

https://api.axionquant.com/financials/AAPL/eps
https://api.axionquant.com/financials/MSFT/eps
|

EPS (Apple)

Request

Sample code
1from axion import Axion
2client = Axion(api_key='axn_123')
3
4eps = client.financials.eps('AAPL',
5    from_date='2024-01-01',
6    to_date='2024-12-31'
7)
8print(eps)

Response

[
  {
    "reportDate": "2024-12-31",
    "tailingEps": 6.29
  },
  {
    "reportDate": "2025-03-31",
    "tailingEps": 6.41
  },
  {
    "reportDate": "2025-06-30",
    "tailingEps": 6.58
  },
  {
    "reportDate": "2025-09-30",
    "tailingEps": 7.46
  },
  {
    "reportDate": "2025-12-31",
    "tailingEps": 7.9
  },
  {
    "reportDate": "2026-03-31",
    "tailingEps": 8.27
  }
]
GET/financials/:ticker/pe

Returns daily price-to-earnings ratio calculated using TTM EPS and daily closing prices. Supports resampling via the frame parameter.

Path Parameters

ParameterTypeRequiredDescription
tickerstringRequiredStock ticker symbol

Query Parameters

ParameterTypeRequiredDescription
fromdateOptionalStart date
todateOptionalEnd date
framestringOptional

Resampling frequency for data aggregation. Default: daily.

Value(s)Resolves to
daily, day, ddaily
weekly, wweek
monthly, month, mmonth
quarterly, quarter, qquarter
yearly, year, yyear

Examples:

https://api.axionquant.com/financials/AAPL/pe
https://api.axionquant.com/financials/AAPL/pe?frame=weekly
|

P/E Ratio (Apple)

Request

Sample code
1from axion import Axion
2client = Axion(api_key='axn_123')
3
4pe = client.financials.pe('AAPL',
5    from_date='2024-01-01',
6    to_date='2024-12-31',
7    frame='weekly'
8)
9print(pe)

Response

[
  {
    "reportDate": "2026-07-06",
    "epsReportDate": "2026-03-31",
    "closePrice": 312.66,
    "ttmEps": 8.27,
    "ttmPe": 37.82
  },
  {
    "reportDate": "2026-07-07",
    "epsReportDate": "2026-03-31",
    "closePrice": 310.66,
    "ttmEps": 8.27,
    "ttmPe": 37.58
  },
  {
    "reportDate": "2026-07-08",
    "epsReportDate": "2026-03-31",
    "closePrice": 313.39,
    "ttmEps": 8.27,
    "ttmPe": 37.91
  },
  {
    "reportDate": "2026-07-09",
    "epsReportDate": "2026-03-31",
    "closePrice": 316.22,
    "ttmEps": 8.27,
    "ttmPe": 38.25
  },
  {
    "reportDate": "2026-07-10",
    "epsReportDate": "2026-03-31",
    "closePrice": 315.32,
    "ttmEps": 8.27,
    "ttmPe": 38.14
  },
  {
    "reportDate": "2026-07-13",
    "epsReportDate": "2026-03-31",
    "closePrice": 317.31,
    "ttmEps": 8.27,
    "ttmPe": 38.38
  }
]
GET/financials/:ticker/marketcap

Returns daily market capitalization calculated from closing price and latest shares outstanding.

Path Parameters

ParameterTypeRequiredDescription
tickerstringRequiredStock ticker symbol

Query Parameters

ParameterTypeRequiredDescription
fromdateOptionalStart date
todateOptionalEnd date
framestringOptional

Resampling frequency for data aggregation. Default: daily.

Value(s)Resolves to
daily, day, ddaily
weekly, wweek
monthly, month, mmonth
quarterly, quarter, qquarter
yearly, year, yyear

Examples:

https://api.axionquant.com/financials/AAPL/marketcap
https://api.axionquant.com/financials/AAPL/marketcap?frame=weekly
|

Market Cap (Apple)

Request

Sample code
1from axion import Axion
2client = Axion(api_key='axn_123')
3
4market_cap = client.financials.market_cap('AAPL',
5    from_date='2024-01-01',
6    to_date='2024-12-31',
7    frame='monthly'
8)
9print(market_cap)

Response

[
  {
    "reportDate": "2026-07-02",
    "sharesReportDate": "2026-04-17",
    "closePrice": 308.63,
    "sharesOutstanding": 14687356000,
    "marketCapitalization": 4532958682280
  },
  {
    "reportDate": "2026-07-06",
    "sharesReportDate": "2026-04-17",
    "closePrice": 312.66,
    "sharesOutstanding": 14687356000,
    "marketCapitalization": 4592148726960
  },
  {
    "reportDate": "2026-07-07",
    "sharesReportDate": "2026-04-17",
    "closePrice": 310.66,
    "sharesOutstanding": 14687356000,
    "marketCapitalization": 4562774014960
  },
  {
    "reportDate": "2026-07-08",
    "sharesReportDate": "2026-04-17",
    "closePrice": 313.39,
    "sharesOutstanding": 14687356000,
    "marketCapitalization": 4602870496840
  },
  {
    "reportDate": "2026-07-09",
    "sharesReportDate": "2026-04-17",
    "closePrice": 316.22,
    "sharesOutstanding": 14687356000,
    "marketCapitalization": 4644435714320
  },
  {
    "reportDate": "2026-07-10",
    "sharesReportDate": "2026-04-17",
    "closePrice": 315.32,
    "sharesOutstanding": 14687356000,
    "marketCapitalization": 4631217093920
  },
  {
    "reportDate": "2026-07-13",
    "sharesReportDate": "2026-04-17",
    "closePrice": 317.31,
    "sharesOutstanding": 14687356000,
    "marketCapitalization": 4660444932360
  }
]
GET/financials/:ticker/roe

Returns quarterly return on equity calculated as net income divided by average equity between periods.

Path Parameters

ParameterTypeRequiredDescription
tickerstringRequiredStock ticker symbol

Query Parameters

ParameterTypeRequiredDescription
fromdateOptionalStart date
todateOptionalEnd date

Examples:

https://api.axionquant.com/financials/AAPL/roe
https://api.axionquant.com/financials/MSFT/roe
|

ROE (Apple)

Request

Sample code
1from axion import Axion
2client = Axion(api_key='axn_123')
3
4roe = client.financials.roe('AAPL',
5    from_date='2024-01-01',
6    to_date='2024-12-31'
7)
8print(roe)

Response

[
  {
    "reportDate": "2024-12-31",
    "netIncomeCommonStockholders": 36330000000,
    "beginningStockholdersEquity": 56950000000,
    "endingStockholdersEquity": 66758000000,
    "avgEquity": 61854000000,
    "roe": 0.5874
  },
  {
    "reportDate": "2025-03-31",
    "netIncomeCommonStockholders": 24780000000,
    "beginningStockholdersEquity": 66758000000,
    "endingStockholdersEquity": 66796000000,
    "avgEquity": 66777000000,
    "roe": 0.3711
  },
  {
    "reportDate": "2025-06-30",
    "netIncomeCommonStockholders": 23434000000,
    "beginningStockholdersEquity": 66796000000,
    "endingStockholdersEquity": 65830000000,
    "avgEquity": 66313000000,
    "roe": 0.3534
  },
  {
    "reportDate": "2025-09-30",
    "netIncomeCommonStockholders": 27466000000,
    "beginningStockholdersEquity": 65830000000,
    "endingStockholdersEquity": 73733000000,
    "avgEquity": 69781500000,
    "roe": 0.3936
  },
  {
    "reportDate": "2025-12-31",
    "netIncomeCommonStockholders": 42097000000,
    "beginningStockholdersEquity": 73733000000,
    "endingStockholdersEquity": 88190000000,
    "avgEquity": 80961500000,
    "roe": 0.52
  },
  {
    "reportDate": "2026-03-31",
    "netIncomeCommonStockholders": 29578000000,
    "beginningStockholdersEquity": 88190000000,
    "endingStockholdersEquity": 106491000000,
    "avgEquity": 97340500000,
    "roe": 0.3039
  }
]
GET/financials/:ticker/ev

Returns daily enterprise value calculated as market cap plus total debt minus cash and cash equivalents.

Path Parameters

ParameterTypeRequiredDescription
tickerstringRequiredStock ticker symbol

Query Parameters

ParameterTypeRequiredDescription
fromdateOptionalStart date
todateOptionalEnd date
framestringOptional

Resampling frequency for data aggregation. Default: daily.

Value(s)Resolves to
daily, day, ddaily
weekly, wweek
monthly, month, mmonth
quarterly, quarter, qquarter
yearly, year, yyear

Examples:

https://api.axionquant.com/financials/AAPL/ev
https://api.axionquant.com/financials/AAPL/ev?frame=weekly
|

Enterprise Value (Apple)

Request

Sample code
1from axion import Axion
2client = Axion(api_key='axn_123')
3
4ev = client.financials.enterprise_value('AAPL',
5    from_date='2024-01-01',
6    to_date='2024-12-31',
7    frame='weekly'
8)
9print(ev)

Response

[
  {
    "reportDate": "2026-06-24",
    "marketCapitalization": 4304570296480,
    "totalDebt": 84711000000,
    "cashAndCashEquivalents": 45572000000,
    "enterpriseValue": 4343709296480
  },
  {
    "reportDate": "2026-06-25",
    "marketCapitalization": 4041226003400,
    "totalDebt": 84711000000,
    "cashAndCashEquivalents": 45572000000,
    "enterpriseValue": 4080365003400
  },
  {
    "reportDate": "2026-06-26",
    "marketCapitalization": 4167977885680,
    "totalDebt": 84711000000,
    "cashAndCashEquivalents": 45572000000,
    "enterpriseValue": 4207116885680
  },
  {
    "reportDate": "2026-06-29",
    "marketCapitalization": 4138015679440,
    "totalDebt": 84711000000,
    "cashAndCashEquivalents": 45572000000,
    "enterpriseValue": 4177154679440
  },
  {
    "reportDate": "2026-06-30",
    "marketCapitalization": 4249933332160,
    "totalDebt": 84711000000,
    "cashAndCashEquivalents": 45572000000,
    "enterpriseValue": 4289072332160
  },
  {
    "reportDate": "2026-07-01",
    "marketCapitalization": 4323663859280,
    "totalDebt": 84711000000,
    "cashAndCashEquivalents": 45572000000,
    "enterpriseValue": 4362802859280
  },
  {
    "reportDate": "2026-07-02",
    "marketCapitalization": 4532958682280,
    "totalDebt": 84711000000,
    "cashAndCashEquivalents": 45572000000,
    "enterpriseValue": 4572097682280
  },
  {
    "reportDate": "2026-07-06",
    "marketCapitalization": 4592148726960,
    "totalDebt": 84711000000,
    "cashAndCashEquivalents": 45572000000,
    "enterpriseValue": 4631287726960
  },
  {
    "reportDate": "2026-07-07",
    "marketCapitalization": 4562774014960,
    "totalDebt": 84711000000,
    "cashAndCashEquivalents": 45572000000,
    "enterpriseValue": 4601913014960
  },
  {
    "reportDate": "2026-07-08",
    "marketCapitalization": 4602870496840,
    "totalDebt": 84711000000,
    "cashAndCashEquivalents": 45572000000,
    "enterpriseValue": 4642009496840
  },
  {
    "reportDate": "2026-07-09",
    "marketCapitalization": 4644435714320,
    "totalDebt": 84711000000,
    "cashAndCashEquivalents": 45572000000,
    "enterpriseValue": 4683574714320
  },
  {
    "reportDate": "2026-07-10",
    "marketCapitalization": 4631217093920,
    "totalDebt": 84711000000,
    "cashAndCashEquivalents": 45572000000,
    "enterpriseValue": 4670356093920
  },
  {
    "reportDate": "2026-07-13",
    "marketCapitalization": 4660444932360,
    "totalDebt": 84711000000,
    "cashAndCashEquivalents": 45572000000,
    "enterpriseValue": 4699583932360
  }
]
GET/financials/:ticker/ebitda

Returns trailing twelve-month EBITDA (earnings before interest, taxes, depreciation, and amortization).

Path Parameters

ParameterTypeRequiredDescription
tickerstringRequiredStock ticker symbol

Query Parameters

ParameterTypeRequiredDescription
fromdateOptionalStart date
todateOptionalEnd date

Examples:

https://api.axionquant.com/financials/AAPL/ebitda
https://api.axionquant.com/financials/MSFT/ebitda
|

EBITDA (Apple)

Request

Sample code
1from axion import Axion
2client = Axion(api_key='axn_123')
3
4ebitda = client.financials.ebitda('AAPL',
5    from_date='2024-01-01',
6    to_date='2024-12-31'
7)
8print(ebitda)

Response

[
  {
    "reportDate": "2025-06-30",
    "ttmEbitda": 141696000000,
    "reportDateEbitda": {
      "2024-09-30": 32502000000,
      "2024-12-31": 45912000000,
      "2025-03-31": 32250000000,
      "2025-06-30": 31032000000
    },
    "exchangeToUsdRate": 1,
    "ttmEbitdaUsd": 141696000000
  },
  {
    "reportDate": "2025-09-30",
    "ttmEbitda": 144748000000,
    "reportDateEbitda": {
      "2024-12-31": 45912000000,
      "2025-03-31": 32250000000,
      "2025-06-30": 31032000000,
      "2025-09-30": 35554000000
    },
    "exchangeToUsdRate": 1,
    "ttmEbitdaUsd": 144748000000
  },
  {
    "reportDate": "2025-12-31",
    "ttmEbitda": 152902000000,
    "reportDateEbitda": {
      "2025-03-31": 32250000000,
      "2025-06-30": 31032000000,
      "2025-09-30": 35554000000,
      "2025-12-31": 54066000000
    },
    "exchangeToUsdRate": 1,
    "ttmEbitdaUsd": 152902000000
  },
  {
    "reportDate": "2026-03-31",
    "ttmEbitda": 159976000000,
    "reportDateEbitda": {
      "2025-06-30": 31032000000,
      "2025-09-30": 35554000000,
      "2025-12-31": 54066000000,
      "2026-03-31": 39324000000
    },
    "exchangeToUsdRate": 1,
    "ttmEbitdaUsd": 159976000000
  }
]
GET/financials/:ticker/de

Returns quarterly debt-to-equity ratio calculated as total debt divided by stockholders' equity.

Path Parameters

ParameterTypeRequiredDescription
tickerstringRequiredStock ticker symbol

Query Parameters

ParameterTypeRequiredDescription
fromdateOptionalStart date
todateOptionalEnd date

Examples:

https://api.axionquant.com/financials/AAPL/de
https://api.axionquant.com/financials/MSFT/de
|

D/E Ratio (Apple)

Request

Sample code
1from axion import Axion
2client = Axion(api_key='axn_123')
3
4de = client.financials.debt_to_equity('AAPL',
5    from_date='2024-01-01',
6    to_date='2024-12-31'
7)
8print(de)

Response

[
  {
    "reportDate": "2024-09-30",
    "totalDebt": 106629000000,
    "stockholdersEquity": 56950000000,
    "debtToEquity": 1.87
  },
  {
    "reportDate": "2024-12-31",
    "totalDebt": 96799000000,
    "stockholdersEquity": 66758000000,
    "debtToEquity": 1.45
  },
  {
    "reportDate": "2025-03-31",
    "totalDebt": 98186000000,
    "stockholdersEquity": 66796000000,
    "debtToEquity": 1.47
  },
  {
    "reportDate": "2025-06-30",
    "totalDebt": 101698000000,
    "stockholdersEquity": 65830000000,
    "debtToEquity": 1.54
  },
  {
    "reportDate": "2025-09-30",
    "totalDebt": 98657000000,
    "stockholdersEquity": 73733000000,
    "debtToEquity": 1.34
  },
  {
    "reportDate": "2025-12-31",
    "totalDebt": 90509000000,
    "stockholdersEquity": 88190000000,
    "debtToEquity": 1.03
  },
  {
    "reportDate": "2026-03-31",
    "totalDebt": 84711000000,
    "stockholdersEquity": 106491000000,
    "debtToEquity": 0.8
  }
]