# solari insight instagram account discover results

> Page the creators found by a discover search.

- **CLI**: `solari insight instagram account discover results`
- **MCP tool**: `solari_insight_instagram_account_discover_results`
- **Access**: `solari:read` — Available on any SOLARI plan, including the trial. One credit per successful call.
- **Plans**: Any paid plan or trial
- **Credit**: 1

Page through the full creator list of one discover search. Each creator comes with profile metrics and their top recent posts.

**When to use it** — After discover, when you need more than the preview or a different order.

**What comes back** — One page of creators, with profile metrics and recent posts.

## Parameters

- `search_id` (string, required, 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)$) — search_id from discover.
- `page` (integer, optional, default 1, ≥ 1) — Page number, starting at 1.
- `page_size` (integer, optional, ≥ 1) — How many creators per page.
- `sort` (enum, optional, default "relevance") — relevance keeps the search order. The others sort by followers, median views, one-month growth, or ad count. Values: `relevance`, `follower_count`, `follower_count_asc`, `median_views_cur`, `total_views_growth_m1`, `ad_count_cur`.

## Response

### `Response`

- `search_id` (uuid) — The search being paged.
- `intent` (string) — The brief.
- `total` (integer) — Creators found.
- `page / page_size` (integer) — Page applied.
- `has_more` (boolean) — Whether there is another page.
- `items` (object[]) — Creators on this page.

### `items[]`

- `account_id` (uuid) — account_id for the other tools.
- `username / full_name` (string) — Handle and display name.
- `bio` (string | null) — Profile bio.
- `profile_pic_url` (string | null) — Profile picture URL.
- `follower_count` (integer | null) — Followers.
- `median_views_cur` (integer | null) — Median views per post, last 3 months.
- `total_views_cur` (integer | null) — Total views, last 3 months.
- `total_views_growth_m1` (number | null) — View growth over the last month. 0.27 means +27%.
- `ad_count_cur` (integer | null) — Recent ad posts.
- `reel_count_cur` (integer | null) — Recent reels.
- `score` (number) — Match score for this search.
- `rising_score` (number | null) — Growth score. Set when the creator came in through trending=true.
- `bio_matched / bio_only` (boolean) — Matched on bio; matched on bio alone with no matching posts.
- `recent_posts` (object[]) — Top recent posts: post_id, slug, media_type, media_url, thumbnail_url, text, posted_at, play_count, like_count.

## Example

```console
$ solari insight instagram account discover results search_id=01a0f3c2-7e41-7b9a-8d2c-5e6f1a9b3c47 page_size=2
```

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

```json
{
  "search_id": "01a0f3c2-7e41-7b9a-8d2c-5e6f1a9b3c47",
  "intent": "KR makeup creators for an autumn eyeshadow palette launch",
  "total": 184,
  "page": 1,
  "page_size": 2,
  "has_more": true,
  "items": [
    {
      "user_id": "018ecc75-55d8-70a7-a348-d370aa504ed9",
      "username": "beinny_motd",
      "full_name": "베이니 BEINNY",
      "bio": "메이크업 · 뷰티 크리에이터",
      "profile_pic_url": "https://dcr.bzine.co/instagram/users/beinny_motd/profile-picture",
      "follower_count": 205754,
      "total_views_cur": 6184200,
      "median_views_cur": 98200,
      "rising_score": null,
      "total_views_growth_m1": 0.27,
      "reel_count_cur": 38,
      "ad_count_cur": 15,
      "bio_matched": true,
      "bio_only": false,
      "score": 0.0487,
      "recent_posts": [
        {
          "post_id": "01a05575-7c9b-7232-8519-4a38fa061389",
          "slug": "DcpugJ2kzv8",
          "media_type": "carousel",
          "media_url": null,
          "thumbnail_url": "https://dcr.bzine.co/instagram/posts/DcpugJ2kzv8/thumbnails/m",
          "text": "#광고 무겁지 않은 가을 데일리 팔레트 로즈밀크티 . .🫖🤎 …",
          "posted_at": "2026-08-30T05:08:56+00:00",
          "play_count": null,
          "like_count": 878
        },
        "… 2 more"
      ],
      "account_id": "018ecc75-55d8-70a7-a348-d370aa504ed9"
    },
    "… 1 more"
  ]
}
```

## As an MCP call

```json
{
  "name": "solari_insight_instagram_account_discover_results",
  "arguments": {
    "search_id": "01a0f3c2-7e41-7b9a-8d2c-5e6f1a9b3c47",
    "page_size": 2
  }
}
```

## Notes

- A creator can show up with no recent_posts when they matched on bio alone.
- media_url is null when the media file isn't stored. thumbnail_url still works.

## Related tools

- [`solari_insight_instagram_account_discover`](https://pub.brandazine.ai/docs/tools/insight-instagram-account-discover.md)
- [`solari_catalog_instagram_account_profile`](https://pub.brandazine.ai/docs/tools/catalog-instagram-account-profile.md)
- [`solari_insight_instagram_account_collabs`](https://pub.brandazine.ai/docs/tools/insight-instagram-account-collabs.md)
