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

# Company Data

> Company overview, shareholders, insider trades, and comparable valuation

Financial Context exposes company and ownership data through `/api/market-data/fundamental/*`.

## Company Overview

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

## Shareholders

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

## Insider Trades

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

## Valuation Comparison

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