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