> ## Documentation Index
> Fetch the complete documentation index at: https://docs.fcontext.com/llms.txt
> Use this file to discover all available pages before exploring further.

# Fundamentals

> Valuation, consensus, dividends, operating data, and EPS forecasts

Fundamental endpoints live under `/api/market-data/fundamental/*`.

## Valuation

```bash theme={null}
curl "https://openapi.fcontext.com/api/market-data/fundamental/valuation?symbol=AAPL.US" \
  -H "x-api-key: YOUR_FCONTEXT_API_KEY"

curl "https://openapi.fcontext.com/api/market-data/fundamental/valuation/history?symbol=AAPL.US" \
  -H "x-api-key: YOUR_FCONTEXT_API_KEY"
```

## Analyst And Forecast Data

```bash theme={null}
curl "https://openapi.fcontext.com/api/market-data/fundamental/consensus?symbol=AAPL.US" \
  -H "x-api-key: YOUR_FCONTEXT_API_KEY"

curl "https://openapi.fcontext.com/api/market-data/fundamental/forecast_eps?symbol=AAPL.US" \
  -H "x-api-key: YOUR_FCONTEXT_API_KEY"

curl "https://openapi.fcontext.com/api/market-data/fundamental/institution_rating?symbol=AAPL.US" \
  -H "x-api-key: YOUR_FCONTEXT_API_KEY"
```

## Dividends And Operating Data

```bash theme={null}
curl "https://openapi.fcontext.com/api/market-data/fundamental/dividend?symbol=AAPL.US" \
  -H "x-api-key: YOUR_FCONTEXT_API_KEY"

curl "https://openapi.fcontext.com/api/market-data/fundamental/operating?symbol=AAPL.US" \
  -H "x-api-key: YOUR_FCONTEXT_API_KEY"
```
