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

# 회사 데이터

> 회사 개요, 주주, 내부자 거래, 비교 밸류에이션

Financial Context는 `/api/market-data/fundamental/*`를 통해 회사 및 소유 구조 데이터를 제공합니다.

## 회사 개요

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

## 주주

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

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

## 내부자 거래

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

## 밸류에이션 비교

```bash theme={null}
curl "https://openapi.fcontext.com/api/market-data/fundamental/valuation_comparison?symbol=AAPL.US&currency=USD&symbols=MSFT.US,NVDA.US" \
  -H "x-api-key: YOUR_FCONTEXT_API_KEY"
```
