All scrapers

E-commerce

Amazon

amazon.com

100% Success rate
3.5s Avg response
In-house anti-bot Protection
6,000 calls Measured over

Amazon runs its own detection stack and is the target most scraping projects hit first. In our benchmark it is also the fastest: a full rendered product page comes back in about three and a half seconds, with every call in the run succeeding.

What you can extract

  • Title, brand, ASIN and category breadcrumb
  • Current price, list price and availability
  • Star rating and review count
  • Image gallery URLs and bullet-point features
  • Search result listings with position

How to scrape it

curl -X POST \
  -H "X-ScrapeUnblocker-Key: $SU_API_KEY" \
  "https://api.scrapeunblocker.com/getPageSource?url=https%3A%2F%2Fwww.amazon.com%2Fdp%2FB08N5WRWNW&parsed_data=true"
import requests

resp = requests.post(
    "https://api.scrapeunblocker.com/getPageSource",
    headers={"X-ScrapeUnblocker-Key": SU_API_KEY},
    params={"url": "https://www.amazon.com/dp/B08N5WRWNW", "parsed_data": True},
)
print(resp.text)
import { ScrapeUnblockerClient } from 'scrapeunblocker';

const su = new ScrapeUnblockerClient({ apiKey: process.env.SU_API_KEY });

const results = await su.getPageSource({
  url: 'https://www.amazon.com/dp/B08N5WRWNW',
  parsedData: true,
});
console.log(results);

Requests are POST and take their parameters in the query string. Browser rendering always happens - there is no flag to enable.

Read the API docs

Related scrapers

Start scraping this site today

Free tier included. No credit card required to test it.