# 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_id예요. 기본은 앞 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=ko)
- [`solari_catalog_instagram_content_batch`](https://solari.sh/docs/tools/catalog-instagram-content-batch.md?lang=ko)
- [`solari_insight_instagram_brand_ad_posts`](https://solari.sh/docs/tools/insight-instagram-brand-ad-posts.md?lang=ko)
