curl --request POST \
--url 'https://api.brightdata.com/datasets/v3/scrape?dataset_id=gd_le8e811kzy4ggddlq&include_errors=true' \
--header "Authorization: Bearer YOUR_API_KEY" \
--header "Content-Type: application/json" \
--data '{"input": [{"url": "https://www.amazon.com/dp/B0CHHSFMRL"}]}'[
{
"url": "https://www.amazon.com/dp/B0FQFB8FMG",
"asin": "B0FQFB8FMG",
"reviewer_name": "John D.",
"rating": 5,
"review_title": "Best headphones I have ever owned",
"review_text": "Incredible sound quality and the noise cancellation is top-notch. Battery lasts for days on a single charge.",
"review_date": "2025-01-15T00:00:00.000Z",
"verified_purchase": true
}
]
Amazon
Collect reviews by URL
Use the Bright Data Web Scraper API to collect Reviews by URL. POST /datasets/v3/scrape starts a job that returns structured product records as JSON.
POST
/
datasets
/
v3
/
scrape
curl --request POST \
--url 'https://api.brightdata.com/datasets/v3/scrape?dataset_id=gd_le8e811kzy4ggddlq&include_errors=true' \
--header "Authorization: Bearer YOUR_API_KEY" \
--header "Content-Type: application/json" \
--data '{"input": [{"url": "https://www.amazon.com/dp/B0CHHSFMRL"}]}'[
{
"url": "https://www.amazon.com/dp/B0FQFB8FMG",
"asin": "B0FQFB8FMG",
"reviewer_name": "John D.",
"rating": 5,
"review_title": "Best headphones I have ever owned",
"review_text": "Incredible sound quality and the noise cancellation is top-notch. Battery lasts for days on a single charge.",
"review_date": "2025-01-15T00:00:00.000Z",
"verified_purchase": true
}
]
Query Parameters
string
default:"gd_le8e811kzy4ggddlq"
required
The dataset ID used for this request.
Must be set to
gd_le8e811kzy4ggddlq to collect Reviews by URL data.boolean
default:false
Whether to send notifications when the request is completed.
boolean
default:true
Whether to include errors in the response.
Request Body
object[]
required
An array of input objects.
Show properties
Show properties
Example
{
"input": [
{"url": "https://www.amazon.com/dp/B0FQFB8FMG", "max_reviews": 50}
]
}
[
{
"url": "https://www.amazon.com/dp/B0FQFB8FMG",
"asin": "B0FQFB8FMG",
"reviewer_name": "John D.",
"rating": 5,
"review_title": "Best headphones I have ever owned",
"review_text": "Incredible sound quality and the noise cancellation is top-notch. Battery lasts for days on a single charge.",
"review_date": "2025-01-15T00:00:00.000Z",
"verified_purchase": true
}
]
Authorizations
Bearer authentication header of the form Bearer <token>, where <token> is your auth token.
Query Parameters
Must be gd_le8e811kzy4ggddlq for this dataset.
Send notifications when the request is completed.
Include errors in the response.
Body
application/json
Array of input objects. See Request Body below for the supported fields.
Show child attributes
Show child attributes
Response
200 - application/json
OK. See response example below the parameters.
Was this page helpful?