List valuation multiples

Return price-to-earnings, book, tangible book, sales, cash-flow, and free-cash- flow multiples together with enterprise-value multiples and price context.

GET/v3.0.0/fundamental/multiples/{identifier}

Plan Access

Free

(Your plan)

Individual

$29/mo

Professional

$89/mo

Plan History

Free

(Your plan)

2 years

Individual

$29/mo

5 years

Professional

$89/mo

40+ years

Request
curl "https://api.roic.ai/v3.0.0/fundamental/multiples/NASDAQ:AAPL?apikey=YOUR_API_KEY&period_type=annual&fiscal_year.gte=2025&fiscal_year.lte=2025"
Response
200 OK
{
  "data": [
    {
      "id": "fnd_N7wh3Ukmc6CRKm",
      "symbol": "NASDAQ:AAPL",
      "period_type": "annual",
      "period_end_date": "2025-09-30",
      "fiscal_year": 2025,
      "period_label": "FY",
      "currency": "USD",
      "price_currency": "USD",
      "fx_applied": false,
      "object": "v3.fundamentals.valuation_multiple",
      "pe_ratio": 33.98211369520578,
      "average_price_earnings_ratio": 29.874264293723755,
      "pe_ratio_with_high_clos_pr": 34.71212257834122,
      "pe_ratio_with_low_clos_pr": 22.582244262565844,
      "pr_to_book_ratio": 47.43411673812166,
      "average_price_to_book_ratio": 41.70015298883282,
      "high_closing_price_to_book_ratio": 48.45310357611218,
      "low_closing_price_to_book_ratio": 31.521547487213763,
      "pr_to_tang_bv_per_sh": 51.01806780952897,
      "average_price_to_tangible_bps": 44.85086640481735,
      "high_price_to_tangible_bps": 52.11404562407606,
      "low_price_to_tangible_bps": 33.90320212016329,
      "pr_to_sales_ratio": 9.146307691013813,
      "average_price_to_sales_ratio": 8.0406773905772,
      "high_closing_price_to_sales_ratio": 9.342790050004686,
      "low_closing_price_to_sales_ratio": 6.078025523415217,
      "pr_to_cash_flow": 34.143059462514124,
      "average_price_to_cash_flow": 30.01575450332787,
      "high_closing_price_to_cash_flow": 34.87652580685671,
      "low_closing_price_to_cash_flow": 22.689198075474067,
      "pr_to_free_cash_flow": 38.68342662134114,
      "average_price_to_free_cash_flow": 34.007269854901715,
      "high_price_to_free_cash_flow": 39.514429816639165,
      "low_price_to_free_cash_flow": 25.706422993911936,
      "ev_to_ttm_sales": 9.144718495486122,
      "average_ev_to_ttm_sales": 8.052049405461824,
      "high_ev_to_ttm_sales": 9.338897508416215,
      "low_ev_to_ttm_sales": 6.112405539985727,
      "ev_to_ttm_ebitda": 26.29172903114378,
      "avg_ev_to_ttm_ebitda": 23.150226135258503,
      "high_ev_to_ttm_ebitda": 26.850007779036673,
      "low_ev_to_ttm_ebitda": 17.573609320515654,
      "ev_to_ttm_ebit": 28.603346063885756,
      "average_ev_to_ttm_ebit": 25.185636472201413,
      "high_ev_to_ttm_ebit": 29.210709703119132,
      "low_ev_to_ttm_ebit": 19.118713280165352,
      "pr_last": 254.63,
      "pr_high": 260.1,
      "pr_low": 169.2101,
      "enterprise_value": 3805675193800,
      "average_enterprise_value": 3350948932626.398,
      "high_enterprise_value": 3886484926000.0005,
      "low_enterprise_value": 2543744801926,
      "bs_sh_out": 14773260000
    }
  ],
  "next_page_url": null,
  "previous_page_url": null
}

Parameters

Path parameters

identifierstringrequired

A ticker ID, an exchange and symbol separated by a colon (e.g. NASDAQ:AAPL), or a FIGI.

Examples: NASDAQ:AAPLtkr_cO46h8pgSu9QqyBBG000B9XRY4

Query parameters

period_typestringoptional

Financial period cadence.

Default: annualValues: annualquarterlyttm
period_labelstringoptional

Filter to a specific period within the fiscal year: FY for annual periods, or Q1Q4 for quarterly and TTM periods.

Values: FYQ1Q2Q3Q4
datestringoptional

Pass a YYYY-MM-DD date directly for an exact period-end-date match. For a range, combine the modifiers below, for example, date.gte=2020-01-01&date.lt=2026-01-01.

+ Show filter modifiers
date.gtestring

Return statements whose period end date is on or after this date.

date.gtstring

Return statements whose period end date is strictly after this date.

date.ltestring

Return statements whose period end date is on or before this date.

date.ltstring

Return statements whose period end date is strictly before this date.

fiscal_yearobjectoptional

Filter by fiscal year. Combine the range modifiers below to select the reporting years you need.

+ Show filter modifiers
fiscal_year.gteinteger

Return statements from this fiscal year onward.

fiscal_year.gtinteger

Return statements after this fiscal year.

fiscal_year.lteinteger

Return statements through this fiscal year.

fiscal_year.ltinteger

Return statements before this fiscal year.

orderstringoptional

Sort by period end date (period_end_date).

Default: descValues: ascdesc
limitintegeroptional

Maximum number of resources to return.

Default: 50Min: 1Max: 100
pagestringoptional

Opaque page token from a previous response. Follow the returned page URL when possible.

Response

Each normalized valuation value is a top-level field on the period resource. Missing values are null.

Response fields

dataarray of objects

Array of financial period resources for the current page, one per reporting period.

+ Show child attributes
idstring

Unique identifier for the financial period record, beginning with fnd_. Store it as the stable reference to this period's figures.

symbolstring

Qualified symbol combining the exchange code and ticker separated by a colon, e.g. NASDAQ:AAPL.

period_typestring

Cadence of the period: annual for full fiscal years, quarterly for fiscal quarters, or ttm for trailing-twelve-month aggregates.

period_end_datestring

Last calendar day of the financial period, in YYYY-MM-DD format.

fiscal_yearnumber

Fiscal year the period belongs to, e.g. 2025. Fiscal years may not align with calendar years; Apple's fiscal 2025 ends in September 2025.

period_labelstring

Label of the period within the fiscal year: FY for annual periods, or Q1 through Q4 for quarters.

currencystring

ISO 4217 code of the currency the financial values are reported in, e.g. USD.

price_currencystring

ISO 4217 code of the currency used for price-derived values such as market capitalization. It can differ from currency when the listing trades in another currency.

fx_appliedboolean

Whether metric values were converted from the company's reporting currency. false means the figures are as originally reported.

objectstring

String representing the object's type, e.g. v3.fundamentals.income_statement. Each fundamentals endpoint returns its own object type.

pe_rationumber

Price/Earnings: Compares the current share price with earnings per share.

average_price_earnings_rationumber

Price/Earnings Average: Compares the average share price with earnings per share.

pe_ratio_with_high_clos_prnumber

Price/Earnings High: Compares the high share price with earnings per share.

pe_ratio_with_low_clos_prnumber

Price/Earnings Low: Compares the low share price with earnings per share.

pr_to_book_rationumber

Price/Book Value: Compares the current share price with book value per share.

average_price_to_book_rationumber

Price/Book Value Average: Compares the average share price with book value per share.

high_closing_price_to_book_rationumber

Price/Book Value High: Compares the high share price with book value per share.

low_closing_price_to_book_rationumber

Price/Book Value Low: Compares the low share price with book value per share.

pr_to_tang_bv_per_shnumber

Price/Tangible Book Value: Compares the current share price with tangible book value per share.

average_price_to_tangible_bpsnumber

Price/Tangible Book Value Average: Compares the average share price with tangible book value per share.

high_price_to_tangible_bpsnumber

Price/Tangible Book Value High: Compares the high share price with tangible book value per share.

low_price_to_tangible_bpsnumber

Price/Tangible Book Value Low: Compares the low share price with tangible book value per share.

pr_to_sales_rationumber

Price/Sales: Compares the current share price with trailing-12-month revenue per share.

average_price_to_sales_rationumber

Price/Sales Average: Compares the average share price with trailing-12-month revenue per share.

high_closing_price_to_sales_rationumber

Price/Sales High: Compares the high share price with trailing-12-month revenue per share.

low_closing_price_to_sales_rationumber

Price/Sales Low: Compares the low share price with revenue per share.

pr_to_cash_flownumber

Price/Cash Flow: Compares the current share price with trailing-12-month operating cash flow per share.

average_price_to_cash_flownumber

Price/Cash Flow Average: Compares the average share price with trailing-12-month operating cash flow per share.

high_closing_price_to_cash_flownumber

Price/Cash Flow High: Compares the high share price with trailing-12-month operating cash flow per share.

low_closing_price_to_cash_flownumber

Price/Cash Flow Low: Compares the low share price with operating cash flow per share.

pr_to_free_cash_flownumber

Price/Free Cash Flow: Compares the current share price with free cash flow per share.

average_price_to_free_cash_flownumber

Price/Free Cash Flow Average: Compares the average share price with trailing-12-month free cash flow per share.

high_price_to_free_cash_flownumber

Price/Free Cash Flow High: Compares the high share price with trailing-12-month free cash flow per share.

low_price_to_free_cash_flownumber

Price/Free Cash Flow Low: Compares the low share price with trailing-12-month free cash flow per share.

ev_to_ttm_salesnumber

EV/Sales: Compares enterprise value with trailing-12-month sales.

average_ev_to_ttm_salesnumber

EV/Sales Average: Compares average enterprise value with trailing-12-month sales.

high_ev_to_ttm_salesnumber

EV/Sales High: Compares high enterprise value with trailing-12-month sales.

low_ev_to_ttm_salesnumber

EV/Sales Low: Compares low enterprise value with trailing-12-month sales.

ev_to_ttm_ebitdanumber

EV/EBITDA: Compares enterprise value with trailing-12-month EBITDA.

avg_ev_to_ttm_ebitdanumber

EV/EBITDA Average: Compares average enterprise value with trailing-12-month EBITDA.

high_ev_to_ttm_ebitdanumber

EV/EBITDA High: Compares high enterprise value with trailing-12-month EBITDA.

low_ev_to_ttm_ebitdanumber

EV/EBITDA Low: Compares low enterprise value with trailing-12-month EBITDA.

ev_to_ttm_ebitnumber

EV/EBIT: Compares enterprise value with trailing-12-month EBIT.

average_ev_to_ttm_ebitnumber

EV/EBIT Average: Compares average enterprise value with trailing-12-month EBIT.

high_ev_to_ttm_ebitnumber

EV/EBIT High: Compares high enterprise value with trailing-12-month EBIT.

low_ev_to_ttm_ebitnumber

EV/EBIT Low: Compares low enterprise value with trailing-12-month EBIT.

pr_lastnumber

Last Price: The most recent price at which the stock traded.

pr_highnumber

High Price: The highest price at which the stock traded during the period.

pr_lownumber

Low Price: The lowest price at which the stock traded during the period.

enterprise_valuenumber

Enterprise Value: A measure of a company’s total value and the estimated cost to acquire it.

average_enterprise_valuenumber

Enterprise Value Average: Enterprise value calculated with average market capitalization.

high_enterprise_valuenumber

Enterprise Value High: Enterprise value calculated with high market capitalization.

low_enterprise_valuenumber

Enterprise Value Low: Enterprise value calculated with low market capitalization.

bs_sh_outnumber

Shares Outstanding: The total number of issued shares investors own as of the period end.

next_page_urlnullable

URL of the next page of results, or null when there are no more pages. Request it unchanged to continue paging.

previous_page_urlnullable

URL of the previous page of results, or null on the first page.

Example

Return valuation multiples for the financial period that ends on one exact date.

curl "https://api.roic.ai/v3.0.0/fundamental/multiples/NASDAQ:AAPL?apikey=YOUR_API_KEY&period_type=annual&date=2025-09-30"

Combine multiples with profitability and enterprise-value components.