# solari catalog instagram content search

> Use this to search Instagram captions, bios, and video transcripts.

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

Keyword search over tracked Instagram posts in KR, JP, US, and TW, covering about the last six months.

**When to use it** — When you want posts about a topic. If you need a count, use content aggregate.

**What comes back** — Posts ranked by relevance, with matching text highlighted.

## Parameters

- `query` (string, required) — Words to search for.
- `region` (enum, optional, default "KR") — KR, JP, US, or TW. Values: `KR`, `JP`, `US`, `TW`.
- `limit` (integer, optional, ≥ 1) — How many posts per page.
- `offset` (integer, optional, default 0, ≥ 0) — How many posts to skip.
- `since` (string, optional, pattern ^\d{4}-\d{2}-\d{2}$) — Only posts on or after this UTC date (YYYY-MM-DD).
- `until` (string, optional, pattern ^\d{4}-\d{2}-\d{2}$) — Only posts on or before this UTC date (YYYY-MM-DD).

## Response

### `Response`

- `query / region` (string) — The query and region applied.
- `total` (integer) — Total matches. Exact up to 10,000, then saturates.
- `took_ms` (integer) — Search time.
- `items` (object[]) — Hits, score descending.

### `items[]`

- `post_id` (uuid) — SOLARI post id.
- `slug` (string) — Instagram shortcode.
- `account_id / author_id / username` (string) — Authoring account.
- `caption` (string) — Caption.
- `user_bio` (string) — Author bio — part of the searched text.
- `transcription_text` (string | null) — Video speech transcription.
- `posted_at` (timestamp) — Published at (UTC).
- `like_count / comment_count` (integer) — Engagement.
- `follower_count` (integer) — Author follower count.
- `score` (number) — Relevance score. Comparable only within this response.
- `highlight` (object) — Matched fragments per field: caption, user_bio, transcription_text.
- `is_video` (boolean) — Whether the post is a video.

## Example

```console
$ solari catalog instagram content search query="이니스프리 그린티" limit=3
```

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

```json
{
  "query": "이니스프리 그린티",
  "region": "KR",
  "total": 10000,
  "took_ms": 1586,
  "items": [
    {
      "post_id": "019f12d8-3e72-78e9-b7e5-39293bc56f23",
      "author_id": "019f12d8-3e0f-7c74-afc6-e14405bd1523",
      "username": "hanydiary",
      "caption": "[이니스프리에디터 4기 1-2 : 그린티 PDRN 아이&립 세럼] #이니스프리 #그린티PDRN 💚 자세한 포스팅은 프로필 링크 참고해주세요 :)",
      "user_bio": "대외활동 | 휴학생 | 취준일기 🪽과 학생회 2년 연임 🪽이니스프리 대학생 에디터 3기 / 4기",
      "transcription_text": null,
      "posted_at": "2026-02-16T05:44:45Z",
      "like_count": 3,
      "comment_count": 3,
      "follower_count": 972,
      "score": 140.43787,
      "slug": "DUzrl1UkoJb",
      "highlight": {
        "caption": [
          "[<mark>이니스프리</mark>에디터 4기 1-2 : <mark>그린티</mark> PDRN 아이&립 세럼] #이니스프리 #그린티PDRN 💚 자세한 포스팅은 프로필 링크 참고해주세요 :)"
        ],
        "user_bio": [
          "대외활동 | 휴학생 | 취준일기 🪽과 학생회 2년 연임 🪽<mark>이니스프리</mark> 대학생 에디터 3기 / 4기"
        ],
        "transcription_text": []
      },
      "is_video": false,
      "media_url": null,
      "thumbnail_url": null,
      "account_id": "019f12d8-3e0f-7c74-afc6-e14405bd1523"
    },
    "… 2 more"
  ]
}
```

## As an MCP call

```json
{
  "name": "solari_catalog_instagram_content_search",
  "arguments": {
    "query": "이니스프리 그린티",
    "limit": 3
  }
}
```

## Notes

- A since older than about six months returns nothing.
- total counts up to 10,000, then stops.

## Related tools

- [`solari_insight_instagram_content_aggregate`](https://solari.sh/docs/tools/insight-instagram-content-aggregate.md)
- [`solari_catalog_instagram_content_batch`](https://solari.sh/docs/tools/catalog-instagram-content-batch.md)
- [`solari_catalog_tiktok_content_search`](https://solari.sh/docs/tools/catalog-tiktok-content-search.md)
