# solari fetch instagram posts

> Collect one Instagram account's posts into the catalog.

- **CLI**: `solari fetch instagram posts`
- **MCP 도구**: `solari_fetch_instagram_posts`
- **권한**: `solari:read` — 로그인한 SOLARI 계정이면 쓸 수 있어요.
- **Required plan**: Free
- **Credit**: 0

Collect posts for one Instagram account into the SOLARI catalog by exact username. This is not a post listing. If the handle is already stored, nothing is scraped.

**언제 쓰나** — When catalog posts does not know an exact handle you already have.

**무엇이 나오나** — Whether it was ingested, how many posts came back, and the catalog command to read them.

## 파라미터

- `username` (string, 필수, ≤ 64 chars) — Instagram username.

## 응답

### `Response`

- `ingested` (boolean) — true if this call collected it live.
- `already_tracked` (boolean) — true if it was already in the catalog.
- `fetched_on_demand` (boolean) — Same as ingested.
- `found` (boolean) — false if the handle could not be collected.
- `account_id` (uuid) — The ingested account.
- `username` (string) — Resolved handle.
- `total` (integer) — Posts available so far.
- `note` (string) — What to expect next.
- `next` (string) — Catalog command to read the result.

## 예시

```console
$ solari fetch instagram posts username=innisfreeofficial
```

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

```json
{
  "ingested": false,
  "already_tracked": true,
  "fetched_on_demand": false,
  "found": true,
  "account_id": "018cabce-14cc-7544-8890-7811ec33ef74",
  "username": "innisfreeofficial",
  "total": 12,
  "note": "Already in the SOLARI catalog. Nothing was scraped.",
  "next": "solari catalog instagram account posts username=innisfreeofficial"
}
```

## MCP 호출로 쓰면

```json
{
  "name": "solari_fetch_instagram_posts",
  "arguments": {
    "username": "innisfreeofficial"
  }
}
```

## 주의사항

- Do not use this to list stored posts. Use catalog instagram account posts for that.
- A first-time ingest can take several seconds. Only recent posts exist until the crawl finishes.

## 관련 도구

- [`solari_fetch_instagram_account`](https://solari.sh/docs/tools/fetch-instagram-account.md?lang=ko)
- [`solari_catalog_instagram_account_posts`](https://solari.sh/docs/tools/catalog-instagram-account-posts.md?lang=ko)
- [`solari_catalog_instagram_account_search`](https://solari.sh/docs/tools/catalog-instagram-account-search.md?lang=ko)
