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

  <Warning>
    必须设置为 `gd_l7q7dkf244hwjntr0` 以收集**按 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>
      要收集的 Amazon 产品的 URL。
    </ParamField>

    <ParamField body="bought_past_month" type="number">
      按过去一个月内购买的单位数进行过滤。
    </ParamField>
  </Expandable>

  #### 示例

  ```json wrap theme={null}
  {
    "input": [
      {"url": "https://www.amazon.com/dp/B0FQFB8FMG"},
      {"url": "https://www.amazon.com/dp/B09V3KXJPB"}
    ]
  }
  ```
</ParamField>

<ResponseExample>
  ```json theme={null}
  [
    {
      "title": "Apple AirPods Pro 3 Wireless Earbuds with Active Noise Cancellation",
      "asin": "B0FQFB8FMG",
      "brand": "Apple",
      "initial_price": 249,
      "final_price": 199.99,
      "currency": "USD",
      "rating": 4.4,
      "reviews_count": 14302,
      "seller_name": "Amazon.com",
      "availability": "In Stock",
      "image_url": "https://m.media-amazon.com/images/I/61solmQSSlL._AC_SL1500_.jpg",
      "url": "https://www.amazon.com/dp/B0FQFB8FMG"
    }
  ]
  ```
</ResponseExample>
