# solari fetch instagram account

> Ingest one Instagram handle into the catalog.

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

Add one Instagram account to the SOLARI catalog by exact username. This is not a search. If it is already stored, nothing is scraped.

**どんなときに使うか** — When catalog search does not know an exact handle you already have.

**何が返るか** — Whether it was ingested, the account_id, and the catalog command to read it.

## パラメータ

- `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.
- `account_id` (uuid) — The ingested account.
- `username` (string) — Resolved handle.
- `note` (string) — What to expect next.
- `next` (string) — Catalog command to read the result.

## 例

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

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

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

## MCP 呼び出しとして

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

## 注意点

- Do not use this to search a name. Use catalog account search first.
- A first-time ingest can take several seconds. Metrics and collaborations stay empty until the crawl finishes.

## 関連ツール

- [`solari_catalog_instagram_account_search`](https://solari.sh/docs/tools/catalog-instagram-account-search.md?lang=ja)
- [`solari_catalog_instagram_account_profile`](https://solari.sh/docs/tools/catalog-instagram-account-profile.md?lang=ja)
- [`solari_fetch_instagram_posts`](https://solari.sh/docs/tools/fetch-instagram-posts.md?lang=ja)
