Skip to main content
POST
/
datasets
/
v3
/
scrape
curl --request POST \
  --url 'https://api.brightdata.com/datasets/v3/scrape?dataset_id=gd_l7q7dkf244hwjntr0&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/B09V3KXJPB"}]}'
[
  {
    "title": "Wireless Noise Cancelling Headphones",
    "url": "https://www.amazon.com/dp/B0CHHSFMRL",
    "asin": "B0CHHSFMRL",
    "price": 249.99,
    "currency": "USD",
    "rating": 4.6,
    "reviews_count": 12450,
    "seller_name": "Electronics Hub",
    "brand": "SoundTech",
    "availability": "In Stock",
    "main_image": "https://m.media-amazon.com/images/I/example-product.jpg",
    "description": "Premium wireless headphones with active noise cancellation and 40-hour battery life.",
    "category": "Electronics > Headphones > Over-Ear"
  }
]

Documentation Index

Fetch the complete documentation index at: https://docs.brightdata.com/llms.txt

Use this file to discover all available pages before exploring further.

Query Parameters

dataset_id
string
default:"gd_l7q7dkf244hwjntr0"
required
The dataset ID used for this request.
Must be set to gd_l7q7dkf244hwjntr0 to collect Products by URL data.
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/dp/B0CHHSFMRL"},
    {"url": "https://www.amazon.com/dp/B09V3KXJPB"}
  ]
}
[
  {
    "title": "Wireless Noise Cancelling Headphones",
    "url": "https://www.amazon.com/dp/B0CHHSFMRL",
    "asin": "B0CHHSFMRL",
    "price": 249.99,
    "currency": "USD",
    "rating": 4.6,
    "reviews_count": 12450,
    "seller_name": "Electronics Hub",
    "brand": "SoundTech",
    "availability": "In Stock",
    "main_image": "https://m.media-amazon.com/images/I/example-product.jpg",
    "description": "Premium wireless headphones with active noise cancellation and 40-hour battery life.",
    "category": "Electronics > Headphones > Over-Ear"
  }
]

Authorizations

Authorization
string
header
required

Bearer authentication header of the form Bearer <token>, where <token> is your auth token.

Query Parameters

dataset_id
string
default:gd_l7q7dkf244hwjntr0
required

Must be gd_l7q7dkf244hwjntr0 to collect Products by URL.

notify
boolean
default:false

Send notifications when the request is completed.

include_errors
boolean
default:true

Include errors in the response.

Body

application/json
input
object[]
required

Response

200 - application/json

OK