# solari insight instagram brand top collaborators

> Creators who have collaborated with an Instagram brand.

- **CLI**: `solari insight instagram brand top collaborators`
- **MCP tool**: `solari_insight_instagram_brand_top_collaborators`
- **Access**: `solari:read` — Works with any signed-in SOLARI account.
- **Required plan**: Free
- **Credit**: 0

Creators who have run ads for a brand, ranked by how often.

**When to use it** — When you want to see who a brand has worked with. The creator-side view is account collabs.

**What comes back** — Creators ordered by collaboration count.

## Parameters

- `account_id` (string, optional, uuid, pattern ^([0-9a-fA-F]{8}-[0-9a-fA-F]{4}-[1-8][0-9a-fA-F]{3}-[89abAB][0-9a-fA-F]{3}-[0-9a-fA-F]{12}|00000000-0000-0000-0000-000000000000|ffffffff-ffff-ffff-ffff-ffffffffffff)$) — Pass the brand's account_id or username.
- `username` (string, optional, ≤ 64 chars) — Brand username. Ignored when account_id is set.
- `promotion` (enum, optional, default "all") — All posts, promotion posts only, or non-promotion only. Values: `all`, `true_only`, `false_only`.
- `limit` (integer, optional, ≥ 1) — How many creators to return.
- `offset` (integer, optional, default 0, ≥ 0) — How many creators to skip.

## Response

### `Response`

- `brand_id` (uuid) — The resolved brand account_id.
- `promotion_filter` (string) — The promotion filter applied.
- `items` (object[]) — Creators, collaboration count descending.
- `total_count` (integer) — Creators matching the filter.

### `items[]`

- `creator_id` (uuid) — Creator account_id.
- `username / full_name` (string) — Username and display name.
- `profile_pic_url` (string) — Profile picture.
- `follower_count` (integer) — Follower count.
- `collaboration_count` (integer) — Collaboration posts with the brand.

## Example

```console
$ solari insight instagram brand top collaborators username=innisfreeofficial limit=5
```

_Long strings and repeated array entries are trimmed for readability._

```json
{
  "brand_id": "018cabce-14cc-7544-8890-7811ec33ef74",
  "promotion_filter": "all",
  "items": [
    {
      "creator_id": "0195474c-8ee3-7690-a385-71b2913e31b5",
      "username": "donge_cos",
      "full_name": "💞동이💞",
      "profile_pic_url": "https://dcr.bzine.co/instagram/users/donge_cos/profile-picture",
      "follower_count": 83354,
      "collaboration_count": 31
    },
    {
      "creator_id": "018ecc75-55d8-70a7-a348-d370aa504ed9",
      "username": "beinny_motd",
      "full_name": "베이니 BEINNY",
      "profile_pic_url": "https://dcr.bzine.co/instagram/users/beinny_motd/profile-picture",
      "follower_count": 205754,
      "collaboration_count": 29
    },
    "… 3 more"
  ],
  "total_count": 2331
}
```

## As an MCP call

```json
{
  "name": "solari_insight_instagram_brand_top_collaborators",
  "arguments": {
    "username": "innisfreeofficial",
    "limit": 5
  }
}
```

## Notes

- To load their posts, pass creator_id values to brand collaborator posts, 100 at a time.

## Related tools

- [`solari_insight_instagram_brand_collaborator_posts`](https://solari.sh/docs/tools/insight-instagram-brand-collaborator-posts.md)
- [`solari_insight_instagram_account_collabs`](https://solari.sh/docs/tools/insight-instagram-account-collabs.md)
