Skip to main content
POST
/
datasets
/
v3
/
scrape
Discover by Keywords
curl --request POST \
  --url https://api.brightdata.com/datasets/v3/scrape \
  --header 'Authorization: Bearer <token>' \
  --header 'Content-Type: application/json' \
  --data '
{
  "input": [
    {
      "keyword": "<string>",
      "url": "<string>",
      "pages_to_search": 123
    }
  ]
}
'
[
  {
    "title": "Adjustable Laptop Stand for Desk",
    "url": "https://www.amazon.com/dp/B0B77889EF",
    "asin": "B0B77889EF",
    "price": 34.99,
    "currency": "USD",
    "rating": 4.7,
    "reviews_count": 15200,
    "seller_name": "DeskPro Accessories",
    "brand": "DeskPro",
    "availability": "In Stock",
    "main_image": "https://m.media-amazon.com/images/I/example-stand.jpg",
    "description": "Ergonomic aluminum laptop stand with adjustable height and angle.",
    "category": "Office Products > Desk Accessories > Laptop Stands",
    "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 Keywords data.
type
string
default:"discover_new"
Must be set to discover_new.
discover_by
string
default:"keyword"
Must be set to keyword.
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": [
    {
      "keyword": "laptop stand",
      "url": "https://www.amazon.com",
      "pages_to_search": 3
    }
  ]
}
[
  {
    "title": "Adjustable Laptop Stand for Desk",
    "url": "https://www.amazon.com/dp/B0B77889EF",
    "asin": "B0B77889EF",
    "price": 34.99,
    "currency": "USD",
    "rating": 4.7,
    "reviews_count": 15200,
    "seller_name": "DeskPro Accessories",
    "brand": "DeskPro",
    "availability": "In Stock",
    "main_image": "https://m.media-amazon.com/images/I/example-stand.jpg",
    "description": "Ergonomic aluminum laptop stand with adjustable height and angle.",
    "category": "Office Products > Desk Accessories > Laptop Stands",
    "country_domain": "amazon.com"
  }
]