> ## 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.

# 按资料网址收集Reels视频

## 查询参数

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

  <Warning>
    必须设置为 `gd_lyclm3ey2q6rww027t` 以收集 **Facebook 短视频**数据。
  </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>
      要收集短视频的 Facebook 个人资料的 URL。
    </ParamField>

    <ParamField body="num_of_posts" type="number">
      要收集的最近短视频数量。缺失值表示无限制。
    </ParamField>

    <ParamField body="posts_to_not_include" type="string[]">
      不包含的帖子 ID。
    </ParamField>

    <ParamField body="start_date" type="string">
      开始日期过滤器 `MM-DD-YYYY`（应早于"end\_date"）。
    </ParamField>

    <ParamField body="end_date" type="string">
      结束日期过滤器 `MM-DD-YYYY`（应晚于"start\_date"）。
    </ParamField>
  </Expandable>

  #### 示例

  ```json wrap theme={null}
  {
    "input": [
      {"url": "https://www.facebook.com/MrBeast6000", "num_of_posts": 10},
      {"url": "https://www.facebook.com/NASA", "start_date": "01-01-2025", "end_date": "03-01-2025"}
    ]
  }
  ```
</ParamField>

<ResponseExample>
  ```json 200 theme={null}
  [
    {
      "url": "https://www.facebook.com/reel/2128461008004479",
      "post_id": "1417440860423673",
      "user_url": "https://www.facebook.com/tmcnewsbr",
      "user_username_raw": "Radio Transamerica FM",
      "content": "Increase in US-Iran tensions...",
      "date_posted": "2026-04-06T00:00:00.000Z",
      "hashtags": ["#guerra", "#eua"],
      "num_comments": 2,
      "num_shares": 0,
      "video_view_count": 582,
      "likes": 3,
      "page_name": "Radio Transamerica FM",
      "profile_id": "100064733164731",
      "page_logo": "https://...",
      "page_likes": 0,
      "page_followers": 1200000,
      "thumbnail": "https://...",
      "page_url": "https://www.facebook.com/tmcnewsbr",
      "profile_handle": "tmcnewsbr",
      "shortcode": "2128461008004479",
      "length": 13.888,
      "audio": "AVAILABLE",
      "video_url": "https://..."
    }
  ]
  ```
</ResponseExample>
