tiktok · contentsolari:readサインイン済みの SOLARI アカウントであれば利用できます。
solari tiktok content batch
最大100件のTikTok投稿idを1回の呼び出しで取得します。
- MCP ツール
- solari_tiktok_content_batch
- CLI
- solari tiktok content batch
- アクセス権
- solari:readサインイン済みの SOLARI アカウントであれば利用できます。サインイン済みの SOLARI アカウントであれば利用できます。
概要
solari_tiktok_content_detailのバッチ版。SOLARIの投稿UUIDを指定して、最大100件のTikTok投稿を1回の呼び出しで取得します。アイテムの形はsolari_tiktok_account_postsのエントリと同じ。未追跡のidは省かれるため、foundはリクエストした数より少なくなることがあります。文字起こしは長いため、include_transcriptはデフォルトで無効。solari_tiktok_account_posts、solari_tiktok_content_search、solari_tiktok_account_profileから得たpost_idのリストを渡してください。TikTokのpost_idsはInstagramのpost_idsとは別。サインイン済みのSOLARIアカウントであれば利用できます。
どんなときに使うか — 検索やアカウント投稿から得たidリストを一括で開くとき。
何が返るか — リクエストしたidのうち見つかった投稿。
パラメータ
- post_idsuuid[]必須
- 取得するSOLARIの投稿UUID。1回の呼び出しにつき最大100件。TikTokの動画idではありません。1–100 items, uuid
- sortenum任意
- アイテムの並び順。posted_atの降順(recent)またはエンゲージメントの降順。既定値
"recent"値recentengagement - include_transcriptboolean任意
- 各アイテムに発話の文字起こしを付けます。文字起こしは長いためデフォルトで無効。既定値
false
レスポンス
Response
- requestedinteger
- 送信されたidの件数。
- foundinteger
- 解決できた件数。
- itemsobject[]
- 見つかった投稿。
items[]
- post_iduuid
- SOLARIの投稿id。Instagramの投稿idとは別の名前空間。
- video_idstring
- 公開されている数値のTikTok id。/video/または/photo/の後ろの数字。
- urlstring
- TikTokの公開パーマリンク。
- account_iduuid
- 投稿者のTikTok account_id。
- usernamestring
- 投稿者のハンドル。
- post_typestring
- video(単一クリップ)またはcarousel(画像のスライドショー)。
- posted_attimestamp
- 投稿日時(UTC)。
- captionstring
- キャプションのテキスト。
- duration_secondsinteger
- 動画の長さ。
- width / heightinteger
- 動画の解像度。
- play_countinteger
- 再生数。
- like_countinteger
- いいね数。
- comment_countinteger
- コメント数。
- share_countinteger
- シェア数。
- collect_countinteger
- 保存数。
- is_adboolean
- TikTokがその投稿を広告としてフラグ付けしているかどうか。
- is_pinnedboolean
- プロフィール上部に固定されているか。
- aigc_label_typestring | null
- TikTokが付与した場合のAI生成コンテンツラベル。
- original_language_codestring | null
- ソース言語のコード。
- cover_urlstring
- カバー画像のURL。
- video_urlstring
- 動画ファイルのURL。
- imagesstring[]
- カルーセルのスライド。video投稿では空。
- hashtagsstring[]
- キャプションから抽出されたハッシュタグ。
- mentionsstring[]
- キャプション内でメンションされたハンドル。
- transcriptstring | null
- 発話の文字起こし。include_transcript=trueのときのみ入ります。
例
リクエスト
$ solari tiktok content batch post_ids='["01a0631e-f0df-7e9d-a09b-d84bc31d3834"]'レスポンス · 読みやすさのため、長い文字列と繰り返しの配列要素を省略しています。
{
"requested": 1,
"found": 1,
"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-b.bzine.co/tiktok/users/019b2137-f76e-7b33-9437-26044fa7b1ed/posts/01a0631e-f0df-7e9d-a09b-d84bc31d3834/medias/origin.mp4",
"images": [],
"hashtags": [],
"mentions": [],
"transcript": null
}
]
}MCP 呼び出しとして
{
"name": "solari_tiktok_content_batch",
"arguments": {
"post_ids": [
"01a0631e-f0df-7e9d-a09b-d84bc31d3834"
]
}
}注意点
- 受け付けるのはSOLARIの投稿UUIDのみ。数値のTikTok動画idはここには渡さないでください。それはcontent detailにvideo_idとして渡してください。
- TikTokの投稿idとInstagramの投稿idは別の名前空間。
関連ツール
- solari_tiktok_content_detailTikTok投稿1件の全情報。
- solari_tiktok_content_searchTikTokのキャプションと動画の文字起こしを横断するキーワード検索。
機械可読な形式: /docs/tools/tiktok-content-batch.md