# solari insight instagram brand overview

> Instagram ブランドのプロフィールと広告履歴です。

- **CLI**: `solari insight instagram brand overview`
- **MCP ツール**: `solari_insight_instagram_brand_overview`
- **アクセス権**: `solari:read` — サインイン済みの SOLARI アカウントであれば利用できます。
- **Required plan**: Free
- **Credit**: 0

ブランドのプロフィールと、広告の裏にあるクリエイター id・広告投稿 id を返します。投稿本文が必要なら、その id を content batch に渡してください。

**どんなときに使うか** — ブランドを最初に見るときに使います。正確な広告件数は brand ad stats です。

**何が返るか** — ブランドのプロフィール、クリエイター id、広告投稿 id です。

## パラメータ

- `username` (string, 必須) — ブランドの Instagram ユーザー名。@ は付けません。
- `full` (boolean, 任意, 既定値 false) — 先頭 20 件ではなく、id 一覧の全体を返します。

## レスポンス

### `Response`

- `information` (object) — ブランドのプロフィール。user_id、username、full_name、bio、follower_count。
- `all_influencers_id` (uuid[]) — ブランド広告を作ったクリエイターの account_ids。デフォルトは先頭 20 件。
- `all_influencers_count` (integer) — 途中で切る前のクリエイター総数。
- `all_influencers_truncated` (boolean) — リストがプレビューのとき true。
- `all_campaign_posts_id` (uuid[]) — 広告投稿の id。デフォルトは先頭 20 件。
- `all_campaign_posts_count` (integer) — 途中で切る前の投稿総数。
- `all_campaign_posts_truncated` (boolean) — リストがプレビューのとき true。

## 例

```console
$ solari insight instagram brand overview username=innisfreeofficial
```

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

```json
{
  "information": {
    "user_id": "018cabce-14cc-7544-8890-7811ec33ef74",
    "username": "innisfreeofficial",
    "full_name": "INNISFREE | 이니스프리",
    "bio": "NATURE MEETS KOREAN SKIN SCIENCE",
    "follower_count": 847619,
    "brand_id": null
  },
  "all_influencers_id": [
    "01935f3d-8188-727e-a0bb-09e54aadfdac",
    "018caf6e-abfd-73da-88ad-11a56c39358b",
    "019a0061-b1d4-7adb-8ea4-1c5572dca38c",
    "… 17 more"
  ],
  "all_campaign_ids": [],
  "all_campaign_posts_id": [
    "019f505f-f8be-7e88-ae08-6fba999950b1",
    "019f5060-3449-779e-a08b-d6d49add90cd",
    "019f4342-3357-7418-916c-da1c44468308",
    "… 17 more"
  ],
  "post_id_to_campaign_id": {},
  "all_influencers_count": 93,
  "all_influencers_truncated": true,
  "all_campaign_posts_count": 100,
  "all_campaign_posts_truncated": true
}
```

## MCP 呼び出しとして

```json
{
  "name": "solari_insight_instagram_brand_overview",
  "arguments": {
    "username": "innisfreeofficial"
  }
}
```

## 注意点

- ユーザー名を渡します。account_id は使えません。未知のユーザー名は 404 です。
- full=true だとそれぞれ最大 100 件まで返します。正確な合計は brand ad stats を使ってください。

## 関連ツール

- [`solari_insight_instagram_brand_ad_stats`](https://solari.sh/docs/tools/insight-instagram-brand-ad-stats.md?lang=ja)
- [`solari_catalog_instagram_content_batch`](https://solari.sh/docs/tools/catalog-instagram-content-batch.md?lang=ja)
- [`solari_insight_instagram_brand_ad_posts`](https://solari.sh/docs/tools/insight-instagram-brand-ad-posts.md?lang=ja)
