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

# 按URL收集帖子

## 查询参数

<ParamField query="dataset_id" type="string" default="gd_lu702nij2f790tmv9h" required>
  用于此请求的数据集 ID。

  <Warning>
    必须设置为 `gd_lu702nij2f790tmv9h` 以收集**按 URL 的帖子**数据。
  </Warning>
</ParamField>

<ParamField query="notify" type="boolean" default={false}>
  请求完成时是否发送通知。
</ParamField>

<ParamField query="include_errors" type="boolean" default={true}>
  是否在响应中包含错误。
</ParamField>

## 请求正文

<ParamField body="input" type="object[]" required>
  输入对象数组。

  <Expandable title="properties">
    <ParamField body="url" type="string" required>
      要收集的 TikTok 帖子的 URL。
    </ParamField>
  </Expandable>

  #### 示例

  ```json wrap theme={null}
  {
    "input": [
      {"url": "https://www.tiktok.com/@mrbeast/video/7553300000000000000"},
      {"url": "https://www.tiktok.com/@bellapoarch/video/7400000000000000000"}
    ]
  }
  ```
</ParamField>

<ResponseExample>
  ```json 200 theme={null}
  [
    {
      "post_id": "7553300000000000000",
      "description": "This is an example post description #fyp #viral",
      "create_time": "2025-01-15T14:30:00.000Z",
      "share_count": 45000,
      "collect_count": 12000,
      "comment_count": 8500,
      "play_count": 15000000,
      "video_duration": 45,
      "hashtags": [
        "#fyp",
        "#viral"
      ],
      "video_url": "https://v16-webapp-prime.tiktok.com/video/example.mp4",
      "profile_username": "examplecreator",
      "profile_url": "https://www.tiktok.com/@examplecreator",
      "is_verified": true
    }
  ]
  ```
</ResponseExample>
