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