# solari instagram account profile

> Everything SOLARI knows about one Instagram account, with performance metrics.

- **CLI**: `solari instagram account profile`
- **MCP tool**: `solari_instagram_account_profile`
- **Access**: `solari:read` — Works with any signed-in SOLARI account.

Full SOLARI profile for one tracked Instagram account: username, full name, bio, follower/following/post counts, verified flag, inferred account_type, view metrics (median and total views, ad count, month-over-month growth, region percentiles), plus embedded previews of recent posts and recent ad collaborations. Identify the account by account_id (UUID from solari_instagram_account_search) or by username (Instagram handle). A username not tracked yet is fetched live on first request (allow several seconds; fetched_on_demand=true in the response, with no view metrics or collaboration history built yet); a not-found error then means the handle does not exist on Instagram. Works with any signed-in SOLARI account.

**When to use it** — The first call of any account deep-dive. Recent posts and recent collaborations come embedded, which saves follow-up calls.

**What comes back** — Profile fields, view-based performance metrics, and embedded previews.

## Parameters

- `account_id` (string, optional, 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 of the account (SOLARI account UUID). Provide this or username.
- `username` (string, optional, ≤ 64 chars) — Instagram handle, with or without a leading @. Ignored when account_id is set.

## Response

### `Response`

- `user_id` (uuid) — The account_id.
- `username / full_name / bio` (string) — Handle, display name, bio text.
- `follower_count / following_count` (integer) — Follower and following counts.
- `total_post_count` (integer) — Lifetime post count.
- `post_count_3m` (integer) — Posts in the last 3 months.
- `is_verified` (boolean) — Verification badge.
- `account_type` (string) — Account character inferred by SOLARI (brand, creator, …).
- `median_views_cur` (integer) — Median views in the current window.
- `total_views_cur` (integer) — Total views in the current window.
- `ad_count_cur` (integer) — Sponsored posts in the current window.
- `median_views_growth_m1` (number) — Median-view change vs. the previous month, as a ratio.
- `total_views_growth_m1` (number) — Total-view change vs. the previous month, as a ratio.
- `median_views_region_pct` (number) — Median-view percentile within the region, 0–1.
- `total_views_region_pct` (number) — Total-view percentile within the region, 0–1.
- `recent_posts` (object[]) — Recent post previews.
- `recent_collabs` (object[]) — Recent ad-collaboration previews.
- `fetched_on_demand` (boolean) — true when this request is what first pulled the account in.

## Example

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

_Long strings and repeated array entries are trimmed for readability._

```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
}
```

## As an MCP call

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

## Notes

- An untracked handle is fetched live on first request. Allow several seconds; fetched_on_demand=true marks it, and view metrics and collaboration history are not built yet in that state.
- A not-found error after that means the handle does not exist on Instagram.
- Metrics are snapshots and can lag live counts.

## Related tools

- [`solari_instagram_account_posts`](https://solari.sh/docs/tools/instagram-account-posts.md)
- [`solari_instagram_account_collabs`](https://solari.sh/docs/tools/instagram-account-collabs.md)
- [`solari_tiktok_account_profile`](https://solari.sh/docs/tools/tiktok-account-profile.md)
