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.
https://api.roic.ai/v2/fundamental/enterprise-value/{identifier}Parameters
Path Parameters
identifierstringrequiredCompany identifier — supports ticker symbol (e.g., `AAPL`), CIK, CUSIP, or ISIN.
AAPLQuery Parameters
apikeystringrequiredYour API key for authentication.
periodstringoptionalReporting period for financial data.
annualValues: annual, quarterlylimitnumberoptionalMaximum number of periods to return.
10Example: 10fiscal_year_startnumberoptionalFilter results starting from this fiscal year.
2020fiscal_year_endnumberoptionalFilter results ending at this fiscal year.
2024date_startstringoptionalFilter results starting from this date (YYYY-MM-DD format).
2020-01-01date_endstringoptionalFilter results ending at this date (YYYY-MM-DD format).
2024-12-31orderstringoptionalSort order for time-series data.
DESCValues: ASC, DESCformatstringoptionalResponse format. Use `json` for JSON (default) or `excel` for tab-separated values compatible with Google Sheets and Excel.
jsonValues: json, excelCode Examples
curl "https://api.roic.ai/v2/fundamental/enterprise-value/AAPL?apikey=YOUR_API_KEY"Response
[
{
"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
| Field | Description |
|---|---|
market_cap | Market capitalization |
bs_cash_near_cash_item | Cash & cash equivalents |
short_and_long_term_debt | Total debt |
enterprise_value | Enterprise value |
bs_tot_cap | Total capital |
tot_debt_to_tot_cap | Total debt to total capital |
total_debt_to_ev | Total debt to enterprise value |
ev_to_ttm_sales | EV / TTM sales |
ev_to_ttm_ebitda | EV / TTM EBITDA |
ev_to_ttm_ebit | EV / TTM EBIT |
ev_to_ttm_cash_flow_firm | EV / TTM cash flow to firm |
ev_to_ttm_free_cash_flow_firm | EV / TTM free cash flow to firm |
diluted_mkt_cap | Diluted market capitalization |
diluted_ev | Diluted enterprise value |
ev_to_sh_out | Enterprise value per share |
ttm_net_sales | TTM net sales |
ttm_ebitda | TTM EBITDA |
ttm_oper_inc | TTM operating income |
ttm_cash_flow_firm | TTM cash flow to firm |
ttm_free_cash_flow_firm | TTM free cash flow to firm |
Metadata
| Field | Description |
|---|---|
ticker | Ticker symbol |
date | Period end date |
period | Reporting period (annual/quarterly) |
period_label | Human-readable period label |
fiscal_year | Fiscal 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
Related Endpoints
- Valuation Multiples - pre-calculated P/E, EV/EBITDA, and other multiples
- Income Statement - detailed revenue and earnings breakdown
- Balance Sheet - full asset and liability detail