> ## Documentation Index
> Fetch the complete documentation index at: https://docs.socq.ai/llms.txt
> Use this file to discover all available pages before exploring further.

# TikTok 视频

> 通过 URL 采集公共 TikTok 视频元数据。

# TikTok 视频

为每个公共视频 URL 采集一个标准化视频记录。

```json theme={"system"}
{
  "urls": ["https://www.tiktok.com/@example/video/7234567890123456789"]
}
```

## 与 MCP 一起使用

| 接口          | 值                                             |
| ----------- | --------------------------------------------- |
| REST        | `POST /v1/tiktok/videos`                      |
| Compact MCP | `socq_execute` 与 `endpoint: "tiktok/videos"`  |
| Typed MCP   | `socq_tiktok_videos`                          |
| 精确工具 URL    | `https://api.socq.ai/mcp?tools=tiktok_videos` |
| CLI         | `socq tiktok videos`                          |

使用上面的 JSON 请求正文作为 `socq_execute` 的嵌套 `input` 对象，或将相同的字段直接传递给Typed 工具。Typed 工具还接受 `_wait_seconds`、`_result_limit` 和 `_idempotency_key`。

<Info>
  成功的采集将返回 `task_id`。继续 `socq_get_task` 直到任务成功，然后从 `results.items` 读取规范化记录。
</Info>

有关完整的提交和轮询流程，请参阅[MCP 快速入门](/zh/integrations/mcp)。

## 结果项

```json theme={"system"}
{
  "id": "7234567890123456789",
  "platform": "tiktok",
  "resource": "videos",
  "type": "video",
  "url": "https://www.tiktok.com/@example/video/7234567890123456789",
  "caption": "Example video #tutorial",
  "language": "en",
  "author": {
    "id": "6784642169778881542",
    "username": "example",
    "name": "Example Creator",
    "url": "https://www.tiktok.com/@example",
    "avatar_url": "https://example.com/avatar.jpg",
    "is_verified": false,
    "is_private": false
  },
  "metrics": {
    "likes_count": 12500,
    "comments_count": 340,
    "views_count": 125000,
    "shares_count": 850,
    "saves_count": 1200,
    "reposts_count": 75
  },
  "media": [],
  "duration_seconds": 15,
  "hashtags": ["tutorial"],
  "mentions": [],
  "music": {
    "id": "7234567890123456789",
    "name": "Original Sound",
    "author": "example",
    "url": null,
    "cover_url": null,
    "is_original": true
  },
  "created_at": "2023-01-01T00:00:00",
  "collected_at": "2026-07-15T10:30:00",
  "extra": {}
}
```


## OpenAPI

````yaml api-manual/agent-api/agent-api.json POST /v1/tiktok/videos
openapi: 3.1.0
info:
  title: SocQ Agent API
  version: v1-57489840196e
  description: Asynchronous social data API generated from the SocQ Capability Registry.
servers:
  - url: https://api.socq.ai
security: []
paths:
  /v1/tiktok/videos:
    post:
      tags:
        - tiktok
      summary: TikTok Videos API
      description: TikTok Videos API
      operationId: socq_tiktok_videos
      requestBody:
        required: true
        content:
          application/json:
            schema:
              $schema: https://json-schema.org/draft/2020-12/schema
              type: object
              additionalProperties: false
              properties:
                urls:
                  type: array
                  items:
                    type: string
                    minLength: 1
                  minItems: 1
                  description: Public profile or content URLs.
              required:
                - urls
      responses:
        '200':
          description: Task accepted
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/AgentSubmitResponse'
      security:
        - bearerAuth: []
        - apiKeyAuth: []
components:
  schemas:
    AgentSubmitResponse:
      type: object
      properties:
        code:
          type: integer
          const: 200
        data:
          type: object
          properties:
            task_id:
              type: string
            status:
              type: string
            created_time:
              type:
                - string
                - 'null'
            idempotent_replay:
              type: boolean
          required:
            - task_id
            - status
  securitySchemes:
    bearerAuth:
      type: http
      scheme: bearer
    apiKeyAuth:
      type: apiKey
      in: header
      name: x-api-key

````