# solari insight instagram account ad posts

> Instagram 크리에이터의 광고 포스트예요.

- **CLI**: `solari insight instagram account ad posts`
- **MCP 도구**: `solari_insight_instagram_account_ad_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) — 크리에이터 사용자명. account_id가 있으면 무시돼요
- `months` (integer, 선택, ≥ 1) — 몇 달 전까지 볼지
- `limit` (integer, 선택, ≥ 1) — 한 페이지에 몇 줄까지
- `offset` (integer, 선택, 기본값 0, ≥ 0) — 앞에서 몇 줄을 건너뛸지
- `target` (string, 선택, ≤ 64 chars) — 지정한 브랜드만. account_id 또는 사용자명.

## 응답

### `Response`

- `account_id / username` (string) — 찾은 크리에이터예요
- `months` (integer) — 이번에 본 기간이에요
- `total` (integer) — 전체 줄 수예요
- `has_more` (boolean) — 다음 페이지가 있는지예요
- `items` (object[]) — 포스트–브랜드 쌍이에요

### `items[]`

- `post_id / slug / url` (string) — 포스트 id와 공개 링크예요
- `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 유료 파트너십 라벨
- `target_account_id / target_username` (string) — 이 줄이 가리키는 브랜드예요

## 예시

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

_읽기 편하도록 긴 문자열과 반복되는 배열 항목을 줄였어요._

```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"
  ]
}
```

## MCP 호출로 쓰면

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

## 주의사항

- target을 넣으면 지정한 브랜드만 남아요. account_id나 사용자명을 넣을 수 있어요.

## 관련 도구

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