# solari instagram content rising

> Instagram posts accelerating faster than their baseline.

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

Instagram posts whose recent performance is accelerating faster than baseline in the region. Same shape as solari_instagram_content_trending including cursor pagination and optional brand personalization via a brand account_id or username. Works with any signed-in SOLARI account.

**When to use it** — When momentum matters more than absolute numbers — catching posts before they peak.

**What comes back** — Same shape as content trending; only the ranking differs.

## Parameters

- `region` (string, optional, default "KR") — Region code such as KR, JP, or US.
- `limit` (integer, optional, ≥ 1) — Maximum posts per page, default 20. Values above 50 are clamped to 50.
- `cursor` (string, optional) — Opaque pagination cursor from the previous response's next_cursor.
- `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)$) — Optional brand account_id (SOLARI account UUID) for brand-affinity personalization.
- `username` (string, optional, ≤ 64 chars) — Optional brand Instagram handle for brand-affinity personalization. Ignored when account_id is set.

## Response

### `Response`

- `items` (object[]) — Rising posts.
- `total_count` (integer) — Size of the feed.
- `region` (string) — Region applied.
- `content_type` (string) — Feed kind tag.
- `next_cursor` (string | null) — Pass this back as cursor for the next page.

### `items[]`

- `post_id` (uuid) — SOLARI post id. Feed it straight into the other content tools.
- `slug` (string) — Instagram shortcode — the segment after /p/ or /reel/ in a public URL.
- `author_id` (uuid) — account_id of the authoring account.
- `username` (string) — Author handle.
- `full_name` (string | null) — Profile display name.
- `profile_pic_url` (string | null) — Profile picture URL.
- `follower_count` (integer | null) — Author follower count at snapshot time.
- `region` (string | null) — Region code assigned to the author.
- `posted_at` (timestamp) — Publication time (UTC).
- `media_type` (string) — image, video, or carousel.
- `play_count` (integer | null) — Video plays. null for image posts.
- `like_count` (integer | null) — Likes at snapshot time.
- `text` (string | null) — Caption text.
- `media_url` (string) — Original media URL.
- `thumbnail_url` (string) — Thumbnail URL.
- `score` (number | null) — Feed ranking score. Comparable only within one response.
- `efficiency_score` (number | null) — Performance relative to the author's follower count.
- `est_percentile` (number | null) — Estimated percentile within the region, 0–1.
- `total_views_3m` (integer | null) — Author's cumulative views over the last 3 months.
- `median_views_3m` (integer | null) — Author's median views over the last 3 months.
- `recent_collab_brands` (string[]) — Brands the author has collaborated with recently.
- `item_type` (string) — Item kind tag; post in the content feeds.
- `content_source` (string | null) — Which pipeline surfaced this item.
- `is_saved` (boolean | null) — Whether the item is saved in the SOLARI app.
- `updated_at` (timestamp | null) — When the metric snapshot was last refreshed.

## Example

```console
$ solari instagram content rising region=KR limit=2
```

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

```json
{
  "items": [
    {
      "item_type": "content",
      "post_id": "01a0495a-4e46-73d5-a111-a818248b665b",
      "author_id": "019e4a24-ee85-78e9-8763-602930999853",
      "username": "iiiwantkitty",
      "full_name": "주 령",
      "profile_pic_url": "https://dcr.bzine.co/instagram/users/iiiwantkitty/profile-picture",
      "follower_count": 706,
      "region": "KR",
      "posted_at": "2026-08-28T07:38:46Z",
      "media_type": "video",
      "play_count": 48092,
      "like_count": null,
      "score": 0.1292899036795201,
      "efficiency_score": 0.1292899036795201,
      "est_percentile": 84.68488691008565,
      "updated_at": "2026-09-03T05:20:45.496271Z",
      "media_url": "https://smr-images-b.bzine.co/users/019e4a24-ee85-78e9-8763-602930999853/posts/01a0495a-4e46-73d5-a111-a818248b665b/medias/01a0495a-4fc0-7352-92dd-a04afe898589.mp4",
      "thumbnail_url": "https://bzine.co/cdn-cgi/media/width=480,mode=frame,time=0ms/https://smr-images-a.bzine.co/users/019e4a24-ee85-78e9-8763-602930999853/posts/01a0495a-4e46-73d5-a111-a818248b665b/medias/01a0495a-4fc0-7352-92dd-a04afe898589 …",
      "slug": "Dck0Wj8xeq3",
      "text": "이정도가 아니면 뮤트라고 하지말자..⭐️ 뮤트톤 친구 입술에 빡빡 발라주고싶음\n\n컬러 보자마자 아 내꺼하자ㅡㅡ 하고 바로 겟한 것\n\n그레이애쉬,, 핑크 ,, 브라운 다 들어간 밑힌 컬러 이거 뮤트톤들이 바르면 진짜 분위기 미처버리는 립이걸랑 영상보다 실물이 더 뮤트!\n\n입술에 올리면 좀더 투명하게 올라가면서 회끼도는데 뉴트럴하면서도 팥앙금 같은 고런 깔 느낌\n안쪽에만 톡톡 발라서 쌩얼립으로도 …",
      "brand_match_score": null,
      "recent_collab_brands": [
        "apieu_cosmetics",
        "… 8 more"
      ],
      "total_views_3m": 2389749,
      "median_views_3m": 5215,
      "is_saved": false,
      "content_source": null
    },
    "… 1 more"
  ],
  "total_count": 291665,
  "region": "KR",
  "content_type": "rising",
  "next_cursor": "eyJhcyI6ICIyMDI2LTA5LTAzVDA1OjIwOjQ5LjA3Mjg3MiswMDowMCIsICJzYyI6ICIyMDI2LTA5LTAzVDA1OjE5OjQwLjc1NzUwOCswMDowMCIsICJzcCI6ICIwMWEwNDNmOC1hODdlLTdiMWItYjFiNi1iODliMTU2YjU0ODgifQ=="
}
```

## As an MCP call

```json
{
  "name": "solari_instagram_content_rising",
  "arguments": {
    "region": "KR",
    "limit": 2
  }
}
```

## Notes

- Parameters and response match content trending, brand personalisation included.

## Related tools

- [`solari_instagram_content_trending`](https://solari.sh/docs/tools/instagram-content-trending.md)
- [`solari_instagram_content_trend_clusters`](https://solari.sh/docs/tools/instagram-content-trend-clusters.md)
