Scrapingdog

Amazon Reviews API

The Amazon Reviews API enables scraping of customer reviews from any Amazon product page. Supports filtering by star rating, reviewer type, media type, and sort order. Single concurrency is recommended for best reliability. Each successful request costs 5 API credits.

Endpoint: https://api.scrapingdog.com/amazon/reviews

API Parameters

🔑

Scrapingdog Parameters

  • api_key Required
    Your personal API key. Available on your dashboard.

    Type: String
🛒

Product

  • asin Required
    Amazon product ID (ASIN) of the product whose reviews you want to scrape.

    Type: String
  • domain Required
    The TLD extension of the Amazon domain. Examples: com, in, de, fr. For a complete list of supported TLDs, refer to Amazon Supported TLDs.

    Type: String
  • page Required
    The page number of reviews to retrieve. Starts at 1.

    Type: Integer

️ Filters

  • sort_by Optional
    Sort order for reviews. Values: helpful (default), recent.

    Type: String
  • filter_by_star Optional
    Filter reviews by star rating. Values: all_stars (default), five_star, four_star, three_star, two_star, one_star, positive, critical.

    Type: String
  • reviewer_type Optional
    Filter by reviewer type. Values: all_reviews (default), avp_only_reviews (verified purchases only).

    Type: String
  • media_type Optional
    Filter by media type. Values: all_contents (default), media_reviews_only.

    Type: String
  • format_type Optional
    Filter by format. Values: all_formats (default), current_format.

    Type: String
  • url Optional
    Alternative to passing asin, domain, and page separately — pass the full Amazon reviews URL directly.

    Type: String

API Examples

Code to Integrate
curl "https://api.scrapingdog.com/amazon/reviews?api_key=APIKEY&domain=com&asin=B00AP877FS&page=1"
API Response
{
  "reviews": 4,
  "rating": 5,
  "actual_reviews": 3,
  "customer_reviews": [
    {
      "user": "pagan chavez",
      "title": "so cute!!",
      "date": "Reviewed in the United States on June 3, 2014",
      "rating": 5,
      "review": "i love this its so cute and i really wanted something to match my vanity area and this was perfect! the brushes themselves are very soft and pretty and the case is adorable"
    },
    {
      "user": "Amazon Customer",
      "title": "Great quality brushes",
      "date": "Reviewed in the United States on March 14, 2015",
      "rating": 5,
      "review": "These brushes are great quality for the price. Very soft and easy to use."
    }
  ]
}