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

# 按畅销商品发现网址

## 查询参数

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

  <Warning>
    必须设置为 `gd_l7q7dkf244hwjntr0` 以收集 **按最畅销商品 URL 发现** 数据。
  </Warning>
</ParamField>

<ParamField query="type" type="string" default="discover_new">
  必须设置为 `discover_new`。
</ParamField>

<ParamField query="discover_by" type="string" default="best_sellers_url">
  必须设置为 `best_sellers_url`。
</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>
  </Expandable>

  #### 示例

  ```json wrap theme={null}
  {
    "input": [
      {"url": "https://www.amazon.com/Best-Sellers-Electronics/zgbs/electronics"}
    ]
  }
  ```
</ParamField>

<ResponseExample>
  ```json 200 theme={null}
  [
    {
      "title": "Portable Bluetooth Speaker",
      "url": "https://www.amazon.com/dp/B09XY1234Z",
      "asin": "B09XY1234Z",
      "price": 39.99,
      "currency": "USD",
      "rating": 4.7,
      "reviews_count": 85200,
      "seller_name": "AudioTech Direct",
      "brand": "AudioTech",
      "availability": "In Stock",
      "main_image": "https://m.media-amazon.com/images/I/example-bestseller.jpg",
      "description": "Compact portable speaker with 20-hour battery and waterproof design.",
      "category": "Electronics > Portable Audio > Speakers"
    }
  ]
  ```
</ResponseExample>
