# solari insight instagram content similar

> Posts similar to one Instagram post.

- **CLI**: `solari insight instagram content similar`
- **MCP ツール**: `solari_insight_instagram_content_similar`
- **アクセス権**: `solari:read` — トライアルを含むすべての SOLARI プランで利用できます。成功した呼び出し 1 回につき 1 クレジットです。
- **対象プラン**: Any paid plan or trial
- **クレジット**: 1

Find Instagram posts that look and read like one post you already have — same subject, format, and mood. Useful for collecting creative references.

**どんなときに使うか** — When you start from a single post. To start from a brand's ads, use brand lookalike content.

**何が返るか** — Similar posts, closest first, each marked whether it's sponsored.

## パラメータ

- `post_id` (string, 必須, 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)$) — post_id of the reference post, from any content tool.
- `region` (string, 任意) — Country code such as KR or JP. Leave this off to search everywhere.
- `limit` (integer, 任意, ≥ 1) — How many posts per page.
- `offset` (integer, 任意, 既定値 0, 0–120) — How many posts to skip.

## レスポンス

### `Response`

- `anchor_post_id` (uuid) — The reference post.
- `items` (object[]) — Similar posts, closest first.

### `items[]`

- `post_id` (uuid) — Post id for other content tools.
- `id` (uuid) — Same as post_id.
- `slug` (string | null) — Shortcode from the public URL.
- `account_id` (uuid | null) — Author account_id.
- `label` (string | null) — Author username.
- `media_type` (string | null) — image, video, or carousel.
- `thumbnail_url` (string | null) — Thumbnail URL.
- `media_url` (string | null) — Media URL. Null when the file isn't stored.
- `play_count` (integer | null) — Video plays.
- `posted_at` (timestamp | null) — Published at (UTC).
- `is_ad` (boolean) — Whether it was identified as sponsored.

## 例

```console
$ solari insight instagram content similar post_id=01a04c73-3ec3-7873-9e84-334c644abfe4 limit=2
```

_読みやすさのため、長い文字列と繰り返しの配列要素を省略しています。_

```json
{
  "anchor_post_id": "01a04c73-3ec3-7873-9e84-334c644abfe4",
  "items": [
    {
      "id": "019ecb92-a677-7421-8ed6-752efe3d99d0",
      "post_id": "019ecb92-a677-7421-8ed6-752efe3d99d0",
      "user_id": "0196cb39-870a-7a76-9773-0b95789c877d",
      "label": "boo_rookie",
      "thumbnail_url": "https://dcr.bzine.co/instagram/posts/DZcD8KXxKwd/thumbnails/m",
      "media_url": null,
      "media_type": "video",
      "play_count": 427258,
      "posted_at": "2026-06-11T08:14:37+00:00",
      "slug": "DZcD8KXxKwd",
      "is_ad": false,
      "account_id": "0196cb39-870a-7a76-9773-0b95789c877d"
    },
    "… 1 more"
  ]
}
```

## MCP 呼び出しとして

```json
{
  "name": "solari_insight_instagram_content_similar",
  "arguments": {
    "post_id": "01a04c73-3ec3-7873-9e84-334c644abfe4",
    "limit": 2
  }
}
```

## 注意点

- Covers roughly the last 4 months. Paging stops at 180 results.
- An unknown or very old post_id returns an empty list.

## 関連ツール

- [`solari_insight_instagram_brand_lookalike_content`](https://pub.brandazine.ai/docs/tools/insight-instagram-brand-lookalike-content.md?lang=ja)
- [`solari_catalog_instagram_content_detail`](https://pub.brandazine.ai/docs/tools/catalog-instagram-content-detail.md?lang=ja)
- [`solari_catalog_instagram_content_batch`](https://pub.brandazine.ai/docs/tools/catalog-instagram-content-batch.md?lang=ja)
