# solari insight instagram content trending

> Instagram posts that are trending now.

- **CLI**: `solari insight instagram content trending`
- **MCP tool**: `solari_insight_instagram_content_trending`
- **Access**: `solari:read` — Works with any signed-in SOLARI account.
- **Required plan**: Free
- **Credit**: 0

Trending Instagram posts in the region you set, with the author's profile attached.

**When to use it** — When you want what's working right now. For speed of growth, use content rising.

**What comes back** — Trending posts. Use next_cursor for the next page.

## Parameters

- `region` (string, optional, default "KR") — Country code such as KR or JP.
- `limit` (integer, optional, ≥ 1) — How many posts per page.
- `cursor` (string, optional) — next_cursor from the previous page.
- `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)$) — Brand account_id to rank toward the brand.
- `username` (string, optional, ≤ 64 chars) — Brand username to rank toward the brand. Ignored when account_id is set.

## Response

### `Response`

- `items` (object[]) — Trending posts.
- `total_count` (integer) — Size of the feed.
- `region` (string) — Region applied.
- `content_type` (string) — Feed kind.
- `next_cursor` (string | null) — Use as cursor on the next page.

### `items[]`

- `post_id` (uuid) — Post id for other content tools.
- `slug` (string) — Shortcode from the public URL.
- `author_id` (uuid) — Author account_id.
- `username` (string) — Author username.
- `full_name` (string | null) — Display name.
- `profile_pic_url` (string | null) — Profile picture URL.
- `follower_count` (integer | null) — Author follower count.
- `region` (string | null) — Author region.
- `posted_at` (timestamp) — Published at (UTC).
- `media_type` (string) — image, video, or carousel.
- `play_count` (integer | null) — Video plays. Null for images.
- `like_count` (integer | null) — Likes.
- `text` (string | null) — Caption.
- `media_url` (string) — Media URL.
- `thumbnail_url` (string) — Thumbnail URL.
- `score` (number | null) — Ranking score for this response.
- `efficiency_score` (number | null) — Performance vs. the author's followers.
- `est_percentile` (number | null) — Region percentile, 0–1.
- `total_views_3m` (integer | null) — Author views in the last 3 months.
- `median_views_3m` (integer | null) — Author median views in the last 3 months.
- `recent_collab_brands` (string[]) — Brands the author recently collaborated with.
- `item_type` (string) — Item kind. post in these feeds.
- `content_source` (string | null) — Which feed surfaced this item.
- `is_saved` (boolean | null) — Whether it's saved in SOLARI.
- `updated_at` (timestamp | null) — When metrics were last refreshed.

## Example

```console
$ solari insight instagram content trending region=KR limit=2
```

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

```json
{
  "items": [
    {
      "item_type": "content",
      "post_id": "01a055fe-d72c-7005-8709-eef67b4be6f0",
      "author_id": "018ecc27-f8e7-7100-9339-bb050ea44a7f",
      "username": "sixpackpiggy",
      "full_name": "Jinmin Park",
      "profile_pic_url": "https://dcr.bzine.co/instagram/users/sixpackpiggy/profile-picture",
      "follower_count": 93442,
      "region": "KR",
      "posted_at": "2026-08-29T02:02:20Z",
      "media_type": "video",
      "play_count": 286749,
      "like_count": null,
      "score": 96.69330916066565,
      "efficiency_score": null,
      "est_percentile": 96.69330916066565,
      "updated_at": "2026-09-03T04:51:42.797111Z",
      "media_url": "https://smr-images-b.bzine.co/users/018ecc27-f8e7-7100-9339-bb050ea44a7f/posts/01a055fe-d72c-7005-8709-eef67b4be6f0/medias/01a055fe-d964-7d73-9a77-d06823a2abc2.mp4",
      "thumbnail_url": "https://bzine.co/cdn-cgi/media/width=480,mode=frame,time=0ms/https://smr-images.bzine.co/users/018ecc27-f8e7-7100-9339-bb050ea44a7f/posts/01a055fe-d72c-7005-8709-eef67b4be6f0/medias/01a055fe-d964-7d73-9a77-d06823a2abc2.m …",
      "slug": "Dcmzs05SAae",
      "text": "How dedicated are you to your Korean skincare? 💅@patinaosaka \n#koreanskincare #osaka #japan #kbeauty #traveling",
      "brand_match_score": null,
      "recent_collab_brands": [],
      "total_views_3m": 1875678,
      "median_views_3m": 57780,
      "is_saved": false,
      "content_source": null
    },
    "… 1 more"
  ],
  "total_count": 213635,
  "region": "KR",
  "content_type": "trending",
  "next_cursor": "eyJhcyI6ICIyMDI2LTA5LTAzVDA1OjIwOjIzLjM4Mzk3NCswMDowMCIsICJzYyI6ICIyMDI2LTA5LTAzVDA0OjQ0OjQ3LjkzNTI1OCswMDowMCIsICJzcCI6ICIwMWEwNTVmZS1mOWIyLTdiNmYtYjY1OS05ZGE1OTM3NjgzMWMifQ=="
}
```

## As an MCP call

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

## Notes

- Pass a brand account_id or username to rank toward the brand.
- Pages use a cursor, not offset. Send back next_cursor.

## Related tools

- [`solari_insight_instagram_content_rising`](https://solari.sh/docs/tools/insight-instagram-content-rising.md)
- [`solari_insight_instagram_content_trend_clusters`](https://solari.sh/docs/tools/insight-instagram-content-trend-clusters.md)
