# solari catalog tiktok account posts

> TikTok アカウントの投稿です。

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

TikTok アカウントの投稿を一覧します。話し言葉が必要なときだけ include_transcript をオンにしてください。

**どんなときに使うか** — プロフィールのプレビューでは足りないときや、期間・形式で分けたいときに使います。

**何が返るか** — 投稿の一覧です。頼めば文字起こしも付きます。

## パラメータ

- `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)$) — TikTok の account_id。これか username を渡します。
- `username` (string, 任意, ≤ 64 chars) — TikTok のユーザー名。account_id があるときは無視されます。
- `limit` (integer, 任意, ≥ 1) — 1ページあたりの件数。
- `offset` (integer, 任意, 既定値 0, ≥ 0) — 先頭から何件飛ばすか。
- `since` (string, 任意, pattern ^\d{4}-\d{2}-\d{2}$) — この UTC 日付以降の投稿だけ (YYYY-MM-DD)。
- `until` (string, 任意, pattern ^\d{4}-\d{2}-\d{2}$) — この UTC 日付以前の投稿だけ (YYYY-MM-DD)。
- `post_type` (enum, 任意) — video または carousel に絞ります。 値: `video`, `carousel`.
- `include_transcript` (boolean, 任意, 既定値 false) — 話し言葉の文字起こしを含めるか。

## レスポンス

### `Response`

- `found` (boolean) — TikTok にないユーザー名なら false です。
- `account_id / username` (string) — 特定したアカウント。
- `total` (integer) — フィルタに一致した投稿。
- `has_more` (boolean) — 次のページがあるか。
- `items` (object[]) — 投稿です。新しい順です。
- `fetched_on_demand` (boolean) — まだ直近の投稿しかないとき true。

### `items[]`

- `post_id` (uuid) — TikTok の post_id。Instagram のものとは互換しません。
- `video_id` (string) — TikTok URL の公開数値 id。
- `url` (string) — 公開パーマリンク。
- `account_id` (uuid) — 投稿者の account_id。
- `username` (string) — 投稿者のユーザー名。
- `post_type` (string) — video または carousel。
- `posted_at` (timestamp) — 投稿日時（UTC）。
- `caption` (string) — キャプション。
- `duration_seconds` (integer) — 動画の長さ。
- `width / height` (integer) — 解像度。
- `play_count` (integer) — 再生数。
- `like_count` (integer) — いいね数。
- `comment_count` (integer) — コメント数。
- `share_count` (integer) — シェア数。
- `collect_count` (integer) — 保存数。
- `is_ad` (boolean) — TikTok の広告フラグ。
- `is_pinned` (boolean) — プロフィールにピン留めされているか。
- `aigc_label_type` (string | null) — AI コンテンツのラベル。TikTok が付けたときだけ入ります。
- `original_language_code` (string | null) — 元の言語。
- `cover_url` (string) — カバー画像 URL。
- `video_url` (string) — 動画ファイル URL。
- `images` (string[]) — カルーセルのスライド。video では空です。
- `hashtags` (string[]) — キャプションのハッシュタグ。
- `mentions` (string[]) — キャプションでメンションされたユーザー名。
- `transcript` (string | null) — 話し言葉の文字起こし。include_transcript=true のときだけ入ります。

## 例

```console
$ solari catalog tiktok account posts username=innisfree_official limit=2
```

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

```json
{
  "found": true,
  "account_id": "019b2137-f76e-7b33-9437-26044fa7b1ed",
  "username": "innisfree_official",
  "total": 87,
  "has_more": true,
  "items": [
    {
      "post_id": "01a0631e-f0df-7e9d-a09b-d84bc31d3834",
      "video_id": "7680375687139642645",
      "url": "https://www.tiktok.com/@innisfree_official/video/7680375687139642645",
      "account_id": "019b2137-f76e-7b33-9437-26044fa7b1ed",
      "username": "innisfree_official",
      "post_type": "video",
      "posted_at": "2026-09-02T12:00:00Z",
      "caption": "Deeply hydrated skin—NO OFF HOURS. 💚  wherever the day takes MINGYU—his hydration stays SUPERCHARGED ⚡️ Green Tea Ceramide Milk: Lightweight milky toner that won't clog your pores  Green Tea Ceramide Mist: Touch-free, fa …",
      "duration_seconds": 23,
      "width": 1080,
      "height": 1920,
      "play_count": 493,
      "like_count": 37,
      "comment_count": 2,
      "share_count": 0,
      "collect_count": 3,
      "is_ad": false,
      "is_pinned": false,
      "aigc_label_type": null,
      "original_language_code": null,
      "cover_url": "https://smr-images-b.bzine.co/tiktok/users/019b2137-f76e-7b33-9437-26044fa7b1ed/posts/01a0631e-f0df-7e9d-a09b-d84bc31d3834/medias/cover.jpg",
      "video_url": "https://smr-images-a.bzine.co/tiktok/users/019b2137-f76e-7b33-9437-26044fa7b1ed/posts/01a0631e-f0df-7e9d-a09b-d84bc31d3834/medias/origin.mp4",
      "images": [],
      "hashtags": [],
      "mentions": [],
      "transcript": null
    },
    "… 1 more"
  ],
  "fetched_on_demand": false
}
```

## MCP 呼び出しとして

```json
{
  "name": "solari_catalog_tiktok_account_posts",
  "arguments": {
    "username": "innisfree_official",
    "limit": 2
  }
}
```

## 注意点

- 文字起こしは長いので、include_transcript の既定はオフです。
- This reads the catalog only. If the username is missing, call solari fetch tiktok posts username=… then retry.

## 関連ツール

- [`solari_catalog_tiktok_account_profile`](https://solari.sh/docs/tools/catalog-tiktok-account-profile.md?lang=ja)
- [`solari_catalog_tiktok_content_detail`](https://solari.sh/docs/tools/catalog-tiktok-content-detail.md?lang=ja)
- [`solari_catalog_instagram_account_posts`](https://solari.sh/docs/tools/catalog-instagram-account-posts.md?lang=ja)
