---
title: 'shareholder'
sidebar_label: 'shareholder'
sidebar_position: 1
---

# longbridge shareholder

View the top shareholders of a company — institutional and individual — with ownership percentages and recent share count changes.

## Basic Usage

```bash
longbridge shareholder TSLA.US
```

```
| shareholder                        | symbol | % shares | chg shares | report_date |
|------------------------------------|--------|----------|------------|-------------|
| Elon R. Musk                       | -      | 24.86%   | +423.53M   | 2025-12-30  |
| The Vanguard Group, Inc.           | -      | 6.90%    | +6.54M     | 2025-12-31  |
| BlackRock, Inc.                    | BLK.US | 5.57%    | +2.81M     | 2025-12-31  |
| State Street Global Advisors, Inc. | -      | 3.06%    | +1.08M     | 2025-12-31  |
| Geode Capital Management, LLC      | -      | 1.75%    | +375.95K   | 2025-12-31  |
```

## Examples

### Check top shareholders

```bash
longbridge shareholder TSLA.US
longbridge shareholder TSLA.US --format json
```

Lists the largest shareholders by ownership percentage, including both institutional investors and individual insiders.

### View top 20 shareholders (--top)

```bash
longbridge shareholder AAPL.US --top
```

```
Top 20 Shareholders — AAPL.US

Period: Latest

| shareholder                    | type        | % shares | chg shares | filing_date |
|--------------------------------|-------------|----------|------------|-------------|
| The Vanguard Group, Inc.       | Institution | 9.71%    | +0.01%     | 2025/12/31  |
| BlackRock, Inc.                | Institution | 7.75%    | -0.06%     | 2026/03/31  |
| ...

Use --object-id <id> to view holding detail for a specific shareholder.
```

`--top` mode spans multiple reporting periods, includes institutions, individuals, and insiders, and displays the shareholder type (Institution / Individual / Insider).

### View shareholder holding detail (--object-id)

```bash
longbridge shareholder AAPL.US --object-id 148057
```

```
Shareholder Detail: The Vanguard Group, Inc.

Trading History:

Period: Past 1 Year
  accum_buy: 0.00  accum_sell: 0.00
```

`--object-id` accepts a shareholder ID from `--top` output and returns that shareholder's historical position changes and trading activity.

## Options

| Flag | Description |
|------|-------------|
| `--top` | Show top 20 shareholders across multiple reporting periods, including institutions and individuals |
| `--object-id` | View holding detail for a specific shareholder (ID from `--top` output) |
| `--format` | Output format: `table` (default) or `json` |
