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