# solari insight instagram account ad posts

> An Instagram creator's ad posts.

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

Sponsored posts from an Instagram creator.

**When to use it** — When you need the ad posts themselves, not a summary.

**What comes back** — Ad posts, newest first.

## Parameters

- `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)$) — Pass the creator's account_id or username.
- `username` (string, optional, ≤ 64 chars) — Creator username. Ignored when account_id is set.
- `months` (integer, optional, ≥ 1) — How many months back to look.
- `limit` (integer, optional, ≥ 1) — How many rows per page.
- `offset` (integer, optional, default 0, ≥ 0) — How many rows to skip.
- `target` (string, optional, ≤ 64 chars) — Limit to one brand — account_id or username.

## Response

### `Response`

- `account_id / username` (string) — The resolved creator.
- `months` (integer) — Lookback window applied.
- `total` (integer) — Total rows.
- `has_more` (boolean) — Whether there is another page.
- `items` (object[]) — Post–brand pairs.

### `items[]`

- `post_id / slug / url` (string) — Post identifiers and public link.
- `post_type` (string) — reel, video, photo, or carousel.
- `posted_at` (timestamp) — Published at (UTC).
- `text` (string) — Caption.
- `like_count / comment_count / play_count` (integer) — Engagement.
- `media_count` (integer) — Number of medias.
- `is_paid_partnership` (boolean | null) — Instagram paid-partnership label.
- `target_account_id / target_username` (string) — The brand on the row.

## Example

```console
$ solari insight instagram account ad posts username=beinny_motd months=6 limit=2
```

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

```json
{
  "account_id": "018ecc75-55d8-70a7-a348-d370aa504ed9",
  "username": "beinny_motd",
  "months": 6,
  "total": 12,
  "has_more": true,
  "items": [
    {
      "post_id": "01a05575-7c9b-7232-8519-4a38fa061389",
      "slug": "DcpugJ2kzv8",
      "url": "https://www.instagram.com/p/DcpugJ2kzv8/",
      "post_type": "carousel",
      "posted_at": "2026-08-30T05:08:56Z",
      "text": "#광고 무겁지 않은 가을 데일리 팔레트 로즈밀크티 . .🫖🤎\n차분하고 미지근한 로즈핑크 팔레트인데\n부드러운 밀크티 무드라서 분위기가 넘 예뻐요..🥺\n\n데이지크에서 올리브영 X 산리오 콜라보\n시티팝 에디션으로 미니섀도우팔레트 4종이 출시되는데\n그 중 자주 추천드렸던 로즈밀크티, 밀크라떼가 있더라구요 !\n\nNEW 컬러 피치레코드, 모브카세트도 출시되어요🤍\n도시의 아침과 저녁 무드를 담은 데일리한 …",
      "like_count": 878,
      "comment_count": 19,
      "play_count": 0,
      "media_count": 15,
      "is_paid_partnership": null,
      "target_account_id": "018cab85-8ef8-7dc9-ab0a-7044d463f65e",
      "target_username": "dasique_official"
    },
    "… 1 more"
  ]
}
```

## As an MCP call

```json
{
  "name": "solari_insight_instagram_account_ad_posts",
  "arguments": {
    "username": "beinny_motd",
    "months": 6,
    "limit": 2
  }
}
```

## Notes

- target limits results to one brand. Pass the brand's account_id or username.

## Related tools

- [`solari_insight_instagram_account_collabs`](https://solari.sh/docs/tools/insight-instagram-account-collabs.md)
- [`solari_insight_instagram_brand_ad_posts`](https://solari.sh/docs/tools/insight-instagram-brand-ad-posts.md)
