# solari catalog instagram account profile

> Instagram 계정의 프로필, 성과, 최근 포스트예요.

- **CLI**: `solari catalog instagram account profile`
- **MCP 도구**: `solari_catalog_instagram_account_profile`
- **권한**: `solari:read` — 로그인한 SOLARI 계정이면 쓸 수 있어요.
- **Required plan**: Free
- **Credit**: 0

Instagram 계정의 프로필, 성과, 최근 포스트와 협업 미리보기를 보여 줘요.

**언제 쓰나** — 계정 전체 그림이 필요할 때 사용해요. 최근 포스트와 협업이 같이 와요.

**무엇이 나오나** — 프로필, 성과, 최근 포스트와 협업 미리보기예요.

## 파라미터

- `account_id` (string, 선택, 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)$) — account_id 또는 username을 넣어요.
- `username` (string, 선택, ≤ 64 chars) — Instagram 사용자명. account_id가 있으면 무시돼요

## 응답

### `Response`

- `user_id` (uuid) — account_id예요
- `username / full_name / bio` (string) — 사용자명, 표시 이름, Bio예요
- `follower_count / following_count` (integer) — 팔로워 수와 팔로잉 수예요
- `total_post_count` (integer) — 누적 포스트 수예요
- `post_count_3m` (integer) — 최근 3개월 포스트예요
- `is_verified` (boolean) — 인증 배지
- `account_type` (string) — SOLARI가 본 계정 성격이에요 (brand, creator, …)
- `median_views_cur` (integer) — 지금 기간의 조회 수 중앙값이에요
- `total_views_cur` (integer) — 지금 기간의 총 조회 수예요
- `ad_count_cur` (integer) — 지금 기간의 광고 포스트예요
- `median_views_growth_m1` (number) — 전월 대비 조회 수 중앙값 변화예요. 비율이에요
- `total_views_growth_m1` (number) — 전월 대비 총 조회 수 변화예요. 비율이에요
- `median_views_region_pct` (number) — 지역 기준 조회 수 중앙값 백분위예요. 0–1이에요.
- `total_views_region_pct` (number) — 지역 기준 총 조회 수 백분위예요. 0–1이에요.
- `recent_posts` (object[]) — 최근 포스트 미리보기예요
- `recent_collabs` (object[]) — 최근 광고 협업 미리보기예요
- `fetched_on_demand` (boolean) — 이번에 처음 가져온 계정이면 true예요.

## 예시

```console
$ solari catalog instagram account profile username=innisfreeofficial
```

_읽기 편하도록 긴 문자열과 반복되는 배열 항목을 줄였어요._

```json
{
  "user_id": "018cabce-14cc-7544-8890-7811ec33ef74",
  "username": "innisfreeofficial",
  "full_name": "INNISFREE | 이니스프리",
  "bio": "NATURE MEETS KOREAN SKIN SCIENCE",
  "profile_pic_url": "https://dcr.bzine.co/instagram/users/innisfreeofficial/profile-picture",
  "follower_count": 847619,
  "total_post_count": 4131,
  "post_count_3m": 100,
  "following_count": 17,
  "is_verified": true,
  "median_views_cur": 12409,
  "ad_count_cur": 0,
  "total_views_cur": 685771,
  "median_views_growth_m1": 0.04956440835659308,
  "total_views_growth_m1": 0.39407867587418205,
  "median_views_region_pct": 0.1736183168163037,
  "total_views_region_pct": 0.1457900950723917,
  "recent_posts": [
    {
      "post_id": "01a06275-d974-7fda-98ee-dd3ee15b4dcf",
      "slug": "DcyMAmUh6FZ",
      "media_type": "video",
      "media_url": "https://smr-images-b.bzine.co/users/018cabce-14cc-7544-8890-7811ec33ef74/posts/01a06275-d974-7fda-98ee-dd3ee15b4dcf/medias/01a06275-db2b-77f7-a020-b4beb744771f.mp4",
      "thumbnail_url": "https://bzine.co/cdn-cgi/media/width=480,mode=frame,time=0ms/https://smr-images.bzine.co/users/018cabce-14cc-7544-8890-7811ec33ef74/posts/01a06275-d974-7fda-98ee-dd3ee15b4dcf/medias/01a06275-db2b-77f7-a020-b4beb744771f.m …",
      "text": "Deeply hydrated skin—NO OFF HOURS. 💚\nwherever the day takes MINGYU (@min9yu_k)—his hydration stays SUPERCHARGED ⚡️\n\nGreen Tea Ceramide Milk: Lightweight milky toner that won‘t clog your pores\nGreen Tea Ceramide Mist: Tou …",
      "play_count": 22467,
      "like_count": 3224,
      "video_media_count": 0,
      "media_count": 1
    },
    "… 5 more"
  ],
  "recent_collabs": [],
  "account_type": "brand",
  "fetched_on_demand": false
}
```

## MCP 호출로 쓰면

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

## 주의사항

- 아직 수집되지 않은 사용자명이면 첫 요청에서 바로 가져와요. 성과와 협업은 수집이 끝날 때까지 비어 있을 수 있어요.
- 그다음에 not-found가 나면 Instagram에 없는 사용자명이에요.

## 관련 도구

- [`solari_catalog_instagram_account_posts`](https://solari.sh/docs/tools/catalog-instagram-account-posts.md?lang=ko)
- [`solari_insight_instagram_account_collabs`](https://solari.sh/docs/tools/insight-instagram-account-collabs.md?lang=ko)
- [`solari_catalog_tiktok_account_profile`](https://solari.sh/docs/tools/catalog-tiktok-account-profile.md?lang=ko)
