> ## 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_ltppn085pokosxh13" required>
  用于此请求的数据集 ID。

  <Warning>
    必须设置为 `gd_ltppn085pokosxh13` 以收集**按 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>
      输入特定帖子 URL 以获取最新的 15 条评论
    </ParamField>
  </Expandable>

  #### 示例

  ```json wrap theme={null}
  {
    "input": [
      {"url":"https://www.instagram.com/cats_of_instagram/reel/C4GLo_eLO2e/"},
      {"url":"https://www.instagram.com/catsofinstagram/p/CesFC7JLyFl/?img_index=1"},
      {"url":"https://www.instagram.com/cats_of_instagram/reel/C2TmNOVMSbG/"}
    ]
  }
  ```
</ParamField>

<ResponseExample>
  ```json 200 theme={null}
  [
    {
      "url": "https://www.instagram.com/nato",
      "comment_user": "met***han***r",
      "comment_user_url": "https://www.instagram.com/metlushanigor",
      "comment_date": "2026-03-14T01:13:08.000Z",
      "comment": "В реальних бойових діях ці танки за 5 хвилин будуть знищені,а солдати ще менше проживуть. Ви відстає НАТО на пʼять років",
      "likes_number": 0,
      "replies_number": 0,
      "replies": null,
      "hashtag_comment": null,
      "tagged_users_in_comment": null,
      "post_url": "https://www.instagram.com/p/DVyB2KkjS07/",
      "post_user": "******",
      "comment_id": "18168596065410257",
      "post_id": "3851148751604100411_985168596"
    }
  ]
  ```
</ResponseExample>
