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