Skip to main content
POST
/
datasets
/
v3
/
scrape
Discover by Category URL
curl --request POST \
  --url https://api.brightdata.com/datasets/v3/scrape \
  --header 'Authorization: Bearer <token>' \
  --header 'Content-Type: application/json' \
  --data '
{
  "input": [
    {
      "category_url": "<string>",
      "num_of_products": 123
    }
  ]
}
'
[
  {
    "title": "Mechanical Gaming Keyboard RGB Backlit",
    "url": "https://www.amazon.de/dp/B0C44556CD",
    "asin": "B0C44556CD",
    "price": 79.99,
    "currency": "EUR",
    "rating": 4.6,
    "reviews_count": 5600,
    "seller_name": "GamerGear EU",
    "brand": "KeyMaster",
    "availability": "In Stock",
    "main_image": "https://m.media-amazon.com/images/I/example-keyboard.jpg",
    "description": "Full-size mechanical keyboard with customizable RGB and hot-swappable switches.",
    "category": "Computers & Accessories > Keyboards",
    "country_domain": "amazon.de"
  }
]

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 Category URL data.
type
string
default:"discover_new"
Must be set to discover_new.
discover_by
string
default:"category_url"
Must be set to category_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": [
    {
      "category_url": "https://www.amazon.de/-/en/b?node=340843031",
      "num_of_products": 25
    }
  ]
}
[
  {
    "title": "Mechanical Gaming Keyboard RGB Backlit",
    "url": "https://www.amazon.de/dp/B0C44556CD",
    "asin": "B0C44556CD",
    "price": 79.99,
    "currency": "EUR",
    "rating": 4.6,
    "reviews_count": 5600,
    "seller_name": "GamerGear EU",
    "brand": "KeyMaster",
    "availability": "In Stock",
    "main_image": "https://m.media-amazon.com/images/I/example-keyboard.jpg",
    "description": "Full-size mechanical keyboard with customizable RGB and hot-swappable switches.",
    "category": "Computers & Accessories > Keyboards",
    "country_domain": "amazon.de"
  }
]