# solari catalog tiktok content detail

> TikTok 포스트를 불러와요.

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

post_id, video_id, 또는 공개 URL로 TikTok 포스트를 불러와요.

**언제 쓰나** — 포스트가 필요할 때 사용해요. id가 많으면 content batch를 쓰세요.

**무엇이 나오나** — 포스트예요. 대본이 있으면 같이 와요.

## 파라미터

- `post_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)$) — post_id, video_id, url 중 하나를 넣어요.
- `video_id` (string, 선택, pattern ^\d{15,20}$) — 공개된 TikTok 숫자 id
- `url` (string, 선택, ≤ 512 chars) — 공개 TikTok 포스트 URL

## 응답

### `Response`

- `item` (object | null) — 포스트예요. 없거나 비공개면 null이에요
- `fetched_on_demand` (boolean) — 이번에 처음 가져온 포스트면 true예요.

### `item`

- `post_id` (uuid) — TikTok 포스트 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[]) — 캐러셀 장이에요. 영상이면 비어 있어요
- `hashtags` (string[]) — 캡션에 있는 해시태그예요
- `mentions` (string[]) — 캡션에서 멘션된 사용자명이에요
- `transcript` (string | null) — 말한 대본이에요. include_transcript=true일 때만 와요

## 예시

```console
$ solari catalog tiktok content detail video_id=7680375687139642645 include_transcript=true
```

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

```json
{
  "item": {
    "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-c.bzine.co/tiktok/users/019b2137-f76e-7b33-9437-26044fa7b1ed/posts/01a0631e-f0df-7e9d-a09b-d84bc31d3834/medias/origin.mp4",
    "images": [],
    "hashtags": [],
    "mentions": [],
    "transcript": null
  },
  "fetched_on_demand": false
}
```

## MCP 호출로 쓰면

```json
{
  "name": "solari_catalog_tiktok_content_detail",
  "arguments": {
    "video_id": "7680375687139642645"
  }
}
```

## 주의사항

- vm.tiktok.com, vt.tiktok.com 짧은 링크도 돼요.
- 아직 없는 video_id나 URL이면 첫 요청에서 바로 가져와요(약 10–40초)

## 관련 도구

- [`solari_catalog_tiktok_content_batch`](https://solari.sh/docs/tools/catalog-tiktok-content-batch.md?lang=ko)
- [`solari_catalog_tiktok_account_posts`](https://solari.sh/docs/tools/catalog-tiktok-account-posts.md?lang=ko)
