Valuation History

Retrieve a monthly valuation history series built from imported price history and the latest available valuation anchors.

Use this endpoint when you want a compact historical view of how a stock's valuation multiple has moved over time.

Endpoint

GET /stocks/{symbol}/valuation-history
Test request
/stocks/AAPL/valuation-history

You can inspect the health endpoint without a key, but most endpoints require one. Create a free account to run the full workflow.

Send a request to view the response.

Authentication

Required.

Authorization: Bearer <your_api_key>

Path Parameters

  • symbol: ticker or symbol to resolve

What The Endpoint Is Good For

Use valuation-history when you need to:

  • inspect how price-driven valuation has expanded or compressed over time
  • compare current valuation percentile versus the last 3, 5, or 10 years
  • feed charts or AI-agent prompts with a lightweight valuation time series

Response

Returns:

  • metadata
  • points

Each point includes:

  • date
  • price
  • market_cap
  • enterprise_value
  • pe
  • forward_pe
  • pb
  • price_to_fcf
  • ev_to_revenue
  • ev_to_ebitda
  • fcf_yield
  • earnings_yield
  • valuation_percentile_3y
  • valuation_percentile_5y
  • valuation_percentile_10y

Response Notes

  • V1 stores monthly points derived from imported price history.
  • V1 is an approximation layer, not a strict point-in-time historical fundamentals model.
  • Current valuation and fundamentals anchors are applied across the stored price series to estimate historical multiple movement.
  • This makes the series useful for trend and percentile analysis, but not for precise historical backtesting of period-specific fundamentals.

Example Request

curl -H "Authorization: Bearer $your_api_key" \
  "https://api.apifinance.ai/stocks/AAPL/valuation-history"

Next step

Run this endpoint with your own API key

Use the playground to inspect the response first, then create a key and move into implementation once the payload fits your product.