Financial Data API

Enterprise Value API

Retrieve enterprise value metrics for any publicly traded company. Enterprise value (EV) represents the total value of a company, accounting for market capitalization, debt, and cash. This endpoint returns EV alongside market cap, cash positions, and trailing twelve-month (TTM) operating figures.

Enterprise value is widely used in valuation analysis because it provides a more complete picture of a company's worth than market cap alone. Analysts use EV-based multiples (EV/Sales, EV/EBITDA) for peer comparisons because they normalize for differences in capital structure.

GEThttps://api.roic.ai/v2/fundamental/enterprise-value/{identifier}

Parameters

Path Parameters

identifierstringrequired

Company identifier — supports ticker symbol (e.g., `AAPL`), CIK, CUSIP, or ISIN.

Example: AAPL

Query Parameters

apikeystringrequired

Your API key for authentication.

periodstringoptional

Reporting period for financial data.

Default: annualValues: annual, quarterly
limitnumberoptional

Maximum number of periods to return.

Default: 10Example: 10
fiscal_year_startnumberoptional

Filter results starting from this fiscal year.

Example: 2020
fiscal_year_endnumberoptional

Filter results ending at this fiscal year.

Example: 2024
date_startstringoptional

Filter results starting from this date (YYYY-MM-DD format).

Example: 2020-01-01
date_endstringoptional

Filter results ending at this date (YYYY-MM-DD format).

Example: 2024-12-31
orderstringoptional

Sort order for time-series data.

Default: DESCValues: ASC, DESC
formatstringoptional

Response format. Use `json` for JSON (default) or `excel` for tab-separated values compatible with Google Sheets and Excel.

Default: jsonValues: json, excel

Code Examples

curl "https://api.roic.ai/v2/fundamental/enterprise-value/AAPL?apikey=YOUR_API_KEY"

Response

Response200 OK
[
  {
    "ticker": "AAPL",
    "date": "2025-09-30",
    "period": "annual",
    "period_label": "2025",
    "fiscal_year": "2025",
    "market_cap": 3806336555000,
    "bs_cash_near_cash_item": 35934000000,
    "short_and_long_term_debt": 98657000000,
    "enterprise_value": 3850296555000,
    "bs_tot_cap": 177961000000,
    "tot_debt_to_tot_cap": 55.4374273014874,
    "total_debt_to_ev": 0.02562322111835357,
    "ev_to_ttm_sales": 9.251939886245948,
    "ev_to_ttm_ebitda": 26.59999830740321,
    "ev_to_ttm_ebit": 28.938718940248027,
    "ev_to_ttm_cash_flow_firm": 34.53738320984554,
    "ev_to_ttm_free_cash_flow_firm": 31.00152624459528,
    "diluted_mkt_cap": 3820645997110,
    "diluted_ev": 3883368997110,
    "ev_to_sh_out": 257.57076328728635,
    "ttm_net_sales": 416161000000,
    "ttm_ebitda": 144748000000,
    "ttm_oper_inc": 133050000000,
    "ttm_cash_flow_firm": 111482000000,
    "ttm_free_cash_flow_firm": 124197000000
  }
]

Field Dictionary

FieldDescription
market_capMarket capitalization
bs_cash_near_cash_itemCash & cash equivalents
short_and_long_term_debtTotal debt
enterprise_valueEnterprise value
bs_tot_capTotal capital
tot_debt_to_tot_capTotal debt to total capital
total_debt_to_evTotal debt to enterprise value
ev_to_ttm_salesEV / TTM sales
ev_to_ttm_ebitdaEV / TTM EBITDA
ev_to_ttm_ebitEV / TTM EBIT
ev_to_ttm_cash_flow_firmEV / TTM cash flow to firm
ev_to_ttm_free_cash_flow_firmEV / TTM free cash flow to firm
diluted_mkt_capDiluted market capitalization
diluted_evDiluted enterprise value
ev_to_sh_outEnterprise value per share
ttm_net_salesTTM net sales
ttm_ebitdaTTM EBITDA
ttm_oper_incTTM operating income
ttm_cash_flow_firmTTM cash flow to firm
ttm_free_cash_flow_firmTTM free cash flow to firm

Metadata

FieldDescription
tickerTicker symbol
datePeriod end date
periodReporting period (annual/quarterly)
period_labelHuman-readable period label
fiscal_yearFiscal year

Use Cases

  • Calculate EV/EBITDA and EV/Sales multiples for comparable company analysis
  • Track enterprise value changes over time for M&A research
  • Build DCF models using TTM operating metrics as starting points
  • Compare capital-structure-neutral valuations across companies in different sectors