> ## Documentation Index
> Fetch the complete documentation index at: https://docs.axionquant.com/llms.txt
> Use this file to discover all available pages before exploring further.

# InsidersAPI

> Insider trading and institutional ownership

## funds()

```typescript theme={null}
funds(ticker: string): Promise<ApiResponse>
```

Get fund ownership data.

<ParamField path="ticker" type="string" required>
  Stock ticker symbol
</ParamField>

### Example

```typescript theme={null}
const funds = await client.insiders.funds('AAPL');
```

## individuals()

```typescript theme={null}
individuals(ticker: string): Promise<ApiResponse>
```

Get insider holders (individuals).

<ParamField path="ticker" type="string" required>
  Stock ticker symbol
</ParamField>

### Example

```typescript theme={null}
const individuals = await client.insiders.individuals('AAPL');
```

## institutions()

```typescript theme={null}
institutions(ticker: string): Promise<ApiResponse>
```

Get institutional ownership data.

<ParamField path="ticker" type="string" required>
  Stock ticker symbol
</ParamField>

### Example

```typescript theme={null}
const institutions = await client.insiders.institutions('AAPL');
```

## ownership()

```typescript theme={null}
ownership(ticker: string): Promise<ApiResponse>
```

Get major holders breakdown.

<ParamField path="ticker" type="string" required>
  Stock ticker symbol
</ParamField>

### Example

```typescript theme={null}
const ownership = await client.insiders.ownership('AAPL');
```

## activity()

```typescript theme={null}
activity(ticker: string): Promise<ApiResponse>
```

Get net share purchase activity.

<ParamField path="ticker" type="string" required>
  Stock ticker symbol
</ParamField>

### Example

```typescript theme={null}
const activity = await client.insiders.activity('AAPL');
```

## transactions()

```typescript theme={null}
transactions(ticker: string): Promise<ApiResponse>
```

Get insider transactions.

<ParamField path="ticker" type="string" required>
  Stock ticker symbol
</ParamField>

### Example

```typescript theme={null}
const transactions = await client.insiders.transactions('AAPL');
```
