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