Skip to main content
POST
/
datasets
/
v3
/
scrape
Discover by Seller
curl --request POST \
  --url https://api.brightdata.com/datasets/v3/scrape \
  --header 'Authorization: Bearer <token>' \
  --header 'Content-Type: application/json' \
  --data '
{
  "input": [
    {
      "seller_url": "<string>",
      "num_of_products": 123
    }
  ]
}
'
[
  {
    "title": "Wireless Charging Pad 15W Fast Charge",
    "url": "https://www.amazon.com/dp/B0C99887GH",
    "asin": "B0C99887GH",
    "price": 18.99,
    "currency": "USD",
    "rating": 4.4,
    "reviews_count": 7300,
    "seller_name": "Electronics Hub",
    "brand": "ChargeFast",
    "availability": "In Stock",
    "main_image": "https://m.media-amazon.com/images/I/example-charger.jpg",
    "description": "Slim wireless charging pad compatible with all Qi-enabled devices.",
    "category": "Electronics > Accessories > Chargers",
    "country_domain": "amazon.com"
  }
]

Query Parameters

dataset_id
string
default:"gd_lwhideng15g8jg63s7"
required
The dataset ID used for this request.
Must be set to gd_lwhideng15g8jg63s7 to collect Discover by Seller data.
type
string
default:"discover_new"
Must be set to discover_new.
discover_by
string
default:"seller"
Must be set to seller.
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": [
    {
      "seller_url": "https://www.amazon.com/sp?ie=UTF8&seller=A2FE2Y3KEQLBV7",
      "num_of_products": 30
    }
  ]
}
[
  {
    "title": "Wireless Charging Pad 15W Fast Charge",
    "url": "https://www.amazon.com/dp/B0C99887GH",
    "asin": "B0C99887GH",
    "price": 18.99,
    "currency": "USD",
    "rating": 4.4,
    "reviews_count": 7300,
    "seller_name": "Electronics Hub",
    "brand": "ChargeFast",
    "availability": "In Stock",
    "main_image": "https://m.media-amazon.com/images/I/example-charger.jpg",
    "description": "Slim wireless charging pad compatible with all Qi-enabled devices.",
    "category": "Electronics > Accessories > Chargers",
    "country_domain": "amazon.com"
  }
]