# 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=ja)
- [`solari_insight_instagram_account_collabs`](https://solari.sh/docs/tools/insight-instagram-account-collabs.md?lang=ja)
- [`solari_catalog_tiktok_account_profile`](https://solari.sh/docs/tools/catalog-tiktok-account-profile.md?lang=ja)
