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
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:
metadatapoints
Each point includes:
datepricemarket_capenterprise_valuepeforward_pepbprice_to_fcfev_to_revenueev_to_ebitdafcf_yieldearnings_yieldvaluation_percentile_3yvaluation_percentile_5yvaluation_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"
Related Endpoints
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.