# solari insight instagram ranking find

> Find one account's rank on the brand and creator boards.

- **CLI**: `solari insight instagram ranking find`
- **MCP ツール**: `solari_insight_instagram_ranking_find`
- **アクセス権**: `solari:read` — トライアルを含むすべての SOLARI プランで利用できます。成功した呼び出し 1 回につき 1 クレジットです。
- **対象プラン**: Any paid plan or trial
- **クレジット**: 1

Where one Instagram account stands, without knowing if it's a brand or a creator. For each board it's on, you get its rank and top percent in every category it belongs to.

**どんなときに使うか** — When the question is "where does this account rank?" or "how does its non-sponsored content do?" and you don't know which board.

**何が返るか** — A brand side and a creator side. A side is null when the account isn't on that board.

## パラメータ

- `username` (string, 必須, ≤ 64 chars) — Instagram username, with or without @.
- `region` (enum, 任意, 既定値 "KR") — KR, JP, or US. The creator board covers KR and JP only. 値: `KR`, `JP`, `US`.
- `days` (integer, 任意, 既定値 30) — 30 or 90.

## レスポンス

### `Response`

- `username` (string) — The handle looked up.
- `region / days` (string · integer) — Settings applied.
- `sort` (string) — Always plays (total views).
- `brand` (object | null) — Its place on the brand board.
- `creator` (object | null) — Its place on the creator board.

### `brand · creator`

- `account` (object) — account_id, username, full_name, follower_count.
- `row` (object | null) — Its overall row, same fields as the matching ranking tool, including the organic split (organic_post_count, organic_total_plays, organic_median_plays, sponsored_share).
- `positions` (object[]) — One entry per category it ranks in.
- `positions[].scope / rank / total / top_pct` (string · integer · number) — Category, rank, how many ranked, and top percent (min 0.1).
- `positions[].share` (number | null) — Creator side only: the category's share of their posts.
- `min_posts / min_followers` (integer) — The loosest filters, used so the account isn't dropped.
- `list_kind` (string) — Creator side only: creator or magazine.
- `snapshot_at` (timestamp | null) — When the board was built.

## 例

```console
$ solari insight instagram ranking find username=innisfreeofficial region=KR
```

_読みやすさのため、長い文字列と繰り返しの配列要素を省略しています。_

```json
{
  "username": "innisfreeofficial",
  "region": "KR",
  "days": 30,
  "sort": "plays",
  "brand": {
    "account": {
      "account_id": "018cabce-14cc-7544-8890-7811ec33ef74",
      "user_id": "018cabce-14cc-7544-8890-7811ec33ef74",
      "username": "innisfreeofficial",
      "full_name": "INNISFREE | 이니스프리",
      "follower_count": 847619
    },
    "min_posts": 1,
    "row": {
      "account_id": "018cabce-14cc-7544-8890-7811ec33ef74",
      "rank": 7,
      "user_id": "018cabce-14cc-7544-8890-7811ec33ef74",
      "username": "innisfreeofficial",
      "post_count": 1204,
      "total_plays": 38920400,
      "median_plays": 14120,
      "sponsored_post_count": 402,
      "sponsored_total_plays": 17610200,
      "organic_median_plays": 11900,
      "categories": [
        "BEAUTY/SKINCARE"
      ],
      "organic_post_count": 802,
      "organic_total_plays": 21310200,
      "sponsored_share": 0.3339
    },
    "positions": [
      {
        "scope": "all",
        "rank": 7,
        "total": 21483,
        "top_pct": 0.1
      },
      {
        "scope": "d1:BEAUTY",
        "rank": 4,
        "total": 3120,
        "top_pct": 0.1
      },
      {
        "scope": "d2:BEAUTY/SKINCARE",
        "rank": 2,
        "total": 1843,
        "top_pct": 0.1
      }
    ],
    "snapshot_at": "2026-09-22T19:04:11.482913+00:00"
  },
  "creator": null
}
```

## MCP 呼び出しとして

```json
{
  "name": "solari_insight_instagram_ranking_find",
  "arguments": {
    "username": "innisfreeofficial",
    "region": "KR"
  }
}
```

## 注意点

- It uses the loosest filters, so a rank here can be better than on a list with stricter filters.

## 関連ツール

- [`solari_insight_instagram_ranking_brands`](https://finder-dev-pub.bzine.co/docs/tools/insight-instagram-ranking-brands.md?lang=ja)
- [`solari_insight_instagram_ranking_creators`](https://finder-dev-pub.bzine.co/docs/tools/insight-instagram-ranking-creators.md?lang=ja)
