> ## 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.

# 基本面

> 估值、共识、分红、经营数据和 EPS 预测

基本面接口位于 `/api/market-data/fundamental/*`。

## 估值

```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"
```

## 分析师和预测数据

```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"
```

## 分红和经营数据

```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"
```
