Skip to main content
This tutorial shows you how to scrape an Amazon product and get structured JSON data using the Bright Data Amazon Scraper API.

Prerequisites

1

Get your API token

Go to the user settings page in your Bright Data account and copy your API token.If you don’t have an account yet, sign up at brightdata.com. New users get $2 free credit for testing.
Your API token is shown only once when created. Copy and store it securely.
2

Send a request

We’ll use the Products endpoint with a synchronous request. Replace YOUR_API_TOKEN with your actual token:
curl -X POST \
  "https://api.brightdata.com/datasets/v3/scrape?dataset_id=gd_l7q7dkf244hwjntr0&format=json" \
  -H "Authorization: Bearer YOUR_API_TOKEN" \
  -H "Content-Type: application/json" \
  -d '[{"url": "https://www.amazon.com/dp/B0CHHSFMRL"}]'
You should see a 200 status code. This takes 10-30 seconds.
3

Review the response

The Bright Data Amazon Scraper API returns a JSON array with structured product data:
[
  {
    "title": "Apple AirPods Pro (2nd Generation)",
    "asin": "B0CHHSFMRL",
    "price": 189.99,
    "currency": "USD",
    "rating": 4.7,
    "reviews_count": 85420,
    "seller_name": "Amazon.com",
    "brand": "Apple",
    "availability": "In Stock",
    "url": "https://www.amazon.com/dp/B0CHHSFMRL"
  }
]
Each product object includes fields covering pricing, ratings, seller info, and more. See the full response schema.
You’ve successfully scraped your first Amazon product using the Bright Data Amazon Scraper API.

Common questions

Yes. Add more objects to the input array. Synchronous requests support up to 20 URLs. For larger batches, use the async /trigger endpoint.
[
  {"url": "https://www.amazon.com/dp/B0CHHSFMRL"},
  {"url": "https://www.amazon.com/dp/B09V3KXJPB"},
  {"url": "https://www.amazon.com/dp/B0BDJ279KF"}
]
Verify your API token is correct and hasn’t expired. Generate a new token from Account settings. See the authentication guide for details.
Synchronous requests have a 1-minute timeout. If the request exceeds this limit, it automatically switches to async and returns a snapshot_id. Use the async workflow for large batches.
Verify the Amazon product URL is publicly accessible and correctly formatted. The URL should follow the pattern https://www.amazon.com/dp/{ASIN}.

Next steps

Send your first request

Explore all five endpoint types with full examples.

Async batch requests

Scrape hundreds of URLs in a single batch job.

Set up webhooks

Receive results automatically when scraping completes.