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