Amazon Seller Feedback

To enable this feature, set the type=seller_feebackparameter.

The request can return a maximum of 5 seller feedback records. To access additional seller feedback records beyond the first page, you can utilize the page parameter for pagination. By inspecting the pagination.has_next_page property, you can determine if there are more results available on the next page to retrieve.

The main keys included in the returned JSON object are:

  • seller_feedback

  • pagination

Amazon Seller Feedback Parameters

The Amazon Seller feature only takes one specific parameter:

ParameterTypeDescription

seller_id Required

string

The ID of an amazon seller.

Your full GET request should then be sent to the following address:

https://ecom.shifter.io/v1?engine=amazon&api_key=<YOUR_API_KEY>&type=seller_feeback&seller_id=AAZRLVTNON75Z

Amazon Seller Feedback Integration Examples

curl --request GET --url "https://ecom.shifter.io/v1?engine=amazon&api_key=<YOUR_API_KEY>&type=seller_feeback&seller_id=AAZRLVTNON75Z
Response Example
{
    "search_parameters": {
        "amazon_url": "https://www.amazon.com/",
        "engine": "amazon",
        "amazon_domain": "amazon.com",
        "device": "desktop",
        "type": "seller_feedback",
        "seller_id": "AAZRLVTNON75Z",
        "scroll_to_bottom": true,
        "wait_bottom_carousel": true,
        "wait_for_video": true,
        "wait_for_offers": true
    },
    "search_information": {
        "organic_results_state": "Results for exact spelling"
    },
    "seller_feedback": [
        {
            "rater": "Jorge balarezo",
            "rating": 5,
            "has_response": false,
            "body": "Tiene un perfume muy agradable ,siempre lo uso lo recomiendo no se van a arrepentir,lo uso ppr a&ntilde;os y estoy contento",
            "date": {
                "raw": "July 24, 2023",
                "utc": "2023-07-24T04:00:00.000Z"
            },
            "position": 1
        },
        {
            "rater": "Sarah M.",
            "rating": 5,
            "has_response": false,
            "body": "Great service",
            "date": {
                "raw": "July 24, 2023",
                "utc": "2023-07-24T04:00:00.000Z"
            },
            "position": 2
        },
        {
            "rater": "Stafford T. Decambra",
            "rating": 5,
            "has_response": false,
            "body": "As described.....thanks!",
            "date": {
                "raw": "July 24, 2023",
                "utc": "2023-07-24T04:00:00.000Z"
            },
            "position": 3
        },
        {
            "rater": "Chad H.",
            "rating": 1,
            "has_response": false,
            "body": "Specifically searched for and ordered a Sharp EL-1801C and was shipped a Sharp EL-1801V. We were shipped a nicer and more expensive calculator, but ordered the &quot;C&quot; vs &quot;V&quot; due to space available and design of keys. Just frustrated that the product was different than advertised or shown.",
            "date": {
                "raw": "July 24, 2023",
                "utc": "2023-07-24T04:00:00.000Z"
            },
            "position": 4
        },
        {
            "rater": "T.S",
            "rating": 5,
            "has_response": false,
            "body": "Great",
            "date": {
                "raw": "July 24, 2023",
                "utc": "2023-07-24T04:00:00.000Z"
            },
            "position": 5
        }
    ],
    "pagination": {
        "current_page": 1,
        "has_next_page": true,
        "next_page": 2
    }
}

Last updated