# solari fetch tiktok account

> Ingest one TikTok handle into the catalog.

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

Add one TikTok 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) — TikTok 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 tiktok account username=innisfree_official
```

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

```json
{
  "ingested": false,
  "already_tracked": true,
  "fetched_on_demand": false,
  "account_id": "01a0631e-f0df-7e9d-a09b-d84bc31d3834",
  "username": "innisfree_official",
  "note": "Already in the SOLARI catalog. Nothing was scraped.",
  "next": "solari catalog tiktok account profile username=innisfree_official"
}
```

## MCP 호출로 쓰면

```json
{
  "name": "solari_fetch_tiktok_account",
  "arguments": {
    "username": "innisfree_official"
  }
}
```

## 주의사항

- Do not use this to search a name. Use catalog account search first.
- A first-time ingest can take 10 to 40 seconds. Only recent posts exist until the crawl finishes.

## 관련 도구

- [`solari_catalog_tiktok_account_search`](https://solari.sh/docs/tools/catalog-tiktok-account-search.md?lang=ko)
- [`solari_catalog_tiktok_account_profile`](https://solari.sh/docs/tools/catalog-tiktok-account-profile.md?lang=ko)
- [`solari_fetch_tiktok_posts`](https://solari.sh/docs/tools/fetch-tiktok-posts.md?lang=ko)
