Amazon Reviews API

This API can be used for scraping reviews from any product page from Amazon. All you need is the ASIN code of that product.

Note: It is advised to scrape Amazon reviews with a single concurrency, as scraping has become more challenging since Amazon introduced the auth wall. We do not guarantee any consistency with this API.

You have to send a GET request to https://api.scrapingdog.com/amazon/reviews with the below-given parameters.

Parameters

Parameter
Description

api_key required

Your personal API key. Available on your dashboard Type: String

domain required

This is the TLD extension of the amazon page. Example - in, com, tr, etc Type: String

asin required

This is the Amazon product ID. Type: String

sort_by

The criteria by which the reviews should be sorted.

Possible Values - helpful, or recent

Default Value - helpful Type: String

filter_by_star

This is used to filter the reviews by the number of stars. Possible Values - one_star, two_star

, three_star, four_star, five_star

, positive or critical. Default Value - all_stars Type: String

format_type

This is used to filter the reviews based on their format. Possible Values - all_formats, or current_format

Default Value - all_formats Type: String

reviewer_type

This is used to filter reviews based on reviewer type. Possible Values - all_reviews, or avp_only_reviews

Default Value - all_reviews Type: String

media_type

This is used to filter reviews based on the media type. Possible Values - media_reviews_only, or all_contents

Default Value - all_contents Type: String

page required

This is the page number. Type: Integer

url

This is the Amazon Product Reviews URL which can be used instead of asin, domain and page. Type: String

API Example

curl "https://api.scrapingdog.com/amazon/reviews?api_key=5eaa61a6e562fc52fe763tr516e4653&domain=com&asin=B00AP877FS&page=1"

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 i dont think i will use these much just because they are so cute... i did try them and i love the coverage that it gives.... who would have known that a cheap priced brush set would be so good.... i would definitely recommend this to everyone!!! i might just order another set just so i can still use one set and keeep the other one as decoration! my only downside is that the color i received is a little different then the one on the picture... but thats ok because i love both colors"
        },
        {
            "user": "Shi",
            "title": "Gift",
            "date": "Reviewed in the United States on May 2, 2022",
            "rating": 5,
            "review": "Yeah I know she was happy with it and the color design"
        },
        {
            "user": "Ginger",
            "title": "Good price, good quality, five stars!",
            "date": "Reviewed in the United States on November 30, 2013",
            "rating": 5,
            "review": "Very cute, great for price, and good quality. I ordered it standard delivery and it got here six days earlier than expected! Very happy and so is the recipient of my gift (who by the way is 20, not a little one as you may assume)!"
        }
    ]
}

Last updated