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

  <Warning>
    必须设置为 `gd_lwhideng15g8jg63s7` 以收集**按 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.de/-/en/dp/B078TNNZK3"},
      {"url": "https://www.amazon.co.jp/dp/B0CWV9YTLV"}
    ]
  }
  ```
</ParamField>

<ResponseExample>
  ```json 200 theme={null}
  [
    {
      "title": "蓝牙便携式防水扬声器",
      "url": "https://www.amazon.de/-/en/dp/B078TNNZK3",
      "asin": "B078TNNZK3",
      "price": 59.99,
      "currency": "EUR",
      "rating": 4.5,
      "reviews_count": 23400,
      "seller_name": "AudioWorld DE",
      "brand": "SoundMax",
      "availability": "有货",
      "main_image": "https://m.media-amazon.com/images/I/example-global.jpg",
      "description": "防水便携式扬声器，具有 360 度立体声和 12 小时电池续航时间。",
      "category": "电子产品 > 音频 > 扬声器",
      "country_domain": "amazon.de"
    }
  ]
  ```
</ResponseExample>
