# solari catalog instagram account posts

> Instagram アカウントの投稿です。

- **CLI**: `solari catalog instagram account posts`
- **MCP ツール**: `solari_catalog_instagram_account_posts`
- **アクセス権**: `solari:read` — サインイン済みの SOLARI アカウントであれば利用できます。
- **Required plan**: Free
- **Credit**: 0

Instagram アカウントの投稿をメディア、タグ、いいね付きで一覧します。日付や形式で絞れます。

**どんなときに使うか** — プロフィールのプレビューでは足りないときや、期間・形式で分けたいときに使います。

**何が返るか** — 投稿の一覧です。カルーセルの全枚と、タグされたアカウント・ハッシュタグも付きます。

## パラメータ

- `account_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)$) — account_id。これか username を渡します。
- `username` (string, 任意, ≤ 64 chars) — Instagram のユーザー名。account_id があるときは無視されます。
- `limit` (integer, 任意, ≥ 1) — 1ページあたりの件数。
- `offset` (integer, 任意, 既定値 0, ≥ 0) — 先頭から何件飛ばすか。
- `since` (string, 任意, pattern ^\d{4}-\d{2}-\d{2}$) — この UTC 日付以降の投稿だけ (YYYY-MM-DD)。
- `until` (string, 任意, pattern ^\d{4}-\d{2}-\d{2}$) — この UTC 日付以前の投稿だけ (YYYY-MM-DD)。
- `post_type` (enum, 任意) — reel、video、photo、carousel のいずれかに絞ります。 値: `reel`, `video`, `photo`, `carousel`.

## レスポンス

### `Response`

- `found` (boolean) — Instagram にないユーザー名なら false です。
- `account_id / username` (string) — 特定したアカウント。
- `total` (integer) — フィルタに一致した投稿。
- `has_more` (boolean) — 次のページがあるか。
- `items` (object[]) — 投稿です。新しい順です。
- `fetched_on_demand` (boolean) — まだ直近の投稿しかないとき true。

### `items[]`

- `post_id` (uuid) — SOLARI の post_id。
- `slug` (string) — Instagram のショートコード。
- `url` (string) — 公開パーマリンク。
- `post_type` (string) — reel、video、photo、または carousel。
- `posted_at` (timestamp) — 投稿日時（UTC）。
- `text` (string) — キャプション。
- `like_count / comment_count / play_count` (integer) — エンゲージメント。
- `media_count` (integer) — メディアの枚数。
- `is_paid_partnership` (boolean | null) — Instagram の有料パートナーシップラベル。
- `medias` (object[]) — カルーセル順の全メディア。
- `medias[].tags` (object[]) — メディアにタグされたアカウントとハッシュタグ。
- `thumbnail_url` (string) — サムネイル。

## 例

```console
$ solari catalog instagram account posts username=innisfreeofficial limit=2
```

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

```json
{
  "found": true,
  "account_id": "018cabce-14cc-7544-8890-7811ec33ef74",
  "username": "innisfreeofficial",
  "fetched_on_demand": false,
  "total": 4196,
  "has_more": true,
  "items": [
    {
      "post_id": "01a06275-d974-7fda-98ee-dd3ee15b4dcf",
      "slug": "DcyMAmUh6FZ",
      "url": "https://www.instagram.com/p/DcyMAmUh6FZ/",
      "post_type": "reel",
      "posted_at": "2026-09-02T12:00:06+00:00",
      "text": "Deeply hydrated skin—NO OFF HOURS. 💚\nwherever the day takes MINGYU (@min9yu_k)—his hydration stays SUPERCHARGED ⚡️\n\nGreen Tea Ceramide Milk: Lightweight milky toner that won‘t clog your pores\nGreen Tea Ceramide Mist: Tou …",
      "like_count": 3224,
      "comment_count": 57,
      "play_count": 22467,
      "media_count": 1,
      "is_paid_partnership": false,
      "medias": [
        {
          "media_type": "video",
          "media_url": "https://smr-images-b.bzine.co/users/018cabce-14cc-7544-8890-7811ec33ef74/posts/01a06275-d974-7fda-98ee-dd3ee15b4dcf/medias/01a06275-db2b-77f7-a020-b4beb744771f.mp4",
          "thumbnail_url": "https://bzine.co/cdn-cgi/media/width=480,mode=frame,time=0ms/https://smr-images.bzine.co/users/018cabce-14cc-7544-8890-7811ec33ef74/posts/01a06275-d974-7fda-98ee-dd3ee15b4dcf/medias/01a06275-db2b-77f7-a020-b4beb744771f.m …",
          "video_duration": 23.868000030517578,
          "tags": []
        }
      ],
      "thumbnail_url": "https://bzine.co/cdn-cgi/media/width=480,mode=frame,time=0ms/https://smr-images.bzine.co/users/018cabce-14cc-7544-8890-7811ec33ef74/posts/01a06275-d974-7fda-98ee-dd3ee15b4dcf/medias/01a06275-db2b-77f7-a020-b4beb744771f.m …"
    },
    "… 1 more"
  ]
}
```

## MCP 呼び出しとして

```json
{
  "name": "solari_catalog_instagram_account_posts",
  "arguments": {
    "username": "innisfreeofficial",
    "limit": 2
  }
}
```

## 注意点

- since と until は UTC 日付で、両端を含みます。
- post_type=reel はショート動画です。video は reel 以外の動画です。
- This reads the catalog only. If the username is missing, call solari fetch instagram posts username=… then retry.

## 関連ツール

- [`solari_catalog_instagram_account_profile`](https://solari.sh/docs/tools/catalog-instagram-account-profile.md?lang=ja)
- [`solari_catalog_instagram_content_detail`](https://solari.sh/docs/tools/catalog-instagram-content-detail.md?lang=ja)
- [`solari_catalog_tiktok_account_posts`](https://solari.sh/docs/tools/catalog-tiktok-account-posts.md?lang=ja)
