Skip to main content
POST
/
datasets
/
v3
/
scrape
Discover by Best Sellers URL
curl --request POST \
  --url https://api.brightdata.com/datasets/v3/scrape \
  --header 'Authorization: Bearer <token>' \
  --header 'Content-Type: application/json' \
  --data '
{
  "input": [
    {
      "url": "<string>"
    }
  ]
}
'
[
  {
    "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"
  }
]

Query Parameters

dataset_id
string
default:"gd_l7q7dkf244hwjntr0"
required
The dataset ID used for this request.
Must be set to gd_l7q7dkf244hwjntr0 to collect Discover by Best Sellers URL data.
type
string
default:"discover_new"
Must be set to discover_new.
discover_by
string
default:"best_sellers_url"
Must be set to best_sellers_url.
notify
boolean
default:false
Whether to send notifications when the request is completed.
include_errors
boolean
default:true
Whether to include errors in the response.

Request Body

input
object[]
required
An array of input objects.

Example

{
  "input": [
    {"url": "https://www.amazon.com/Best-Sellers-Electronics/zgbs/electronics"}
  ]
}
[
  {
    "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"
  }
]