Amazon Seller Profile

To enable this feature, set the type=seller_profileparameter.

The Amazon Seller feature should be used when scraping Amazon products from a seller. This feature will return a JSON object with the available products sold by a seller. Among other useful information, the main keys included in the JSON object are:

  • seller_details

  • feedback

  • feedback_summary

Amazon Seller Profile 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_profile&seller_id=AAZRLVTNON75Z

Amazon Seller Profile Integration Examples

curl --request GET --url "https://ecom.shifter.io/v1?engine=amazon&api_key=<YOUR_API_KEY>&type=seller_profile&seller_id=AAZRLVTNON75Z
Response Example
{
    "search_parameters": {
        "amazon_url": "https://www.amazon.com/sp?seller=AAZRLVTNON75Z",
        "engine": "amazon",
        "amazon_domain": "amazon.com",
        "device": "desktop",
        "type": "seller_profile",
        "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_profile": {
        "seller_details": {
            "name": "Triplenet Pricing INC",
            "store_link": "https://www.amazon.com/s?ie=UTF8&marketplaceID=ATVPDKIKX0DER&me=AAZRLVTNON75Z",
            "logo": "https://m.media-amazon.com/images/I/11kriIp42uL.jpg",
            "rating": 4,
            "ratings_total": 4078,
            "ratings_positive_percentage": 74,
            "business_name": "Delaware",
            "business_address": "86 Albe Drive Suite 1C NEWARK DE 19702 US",
            "business_address_rows": [
                "86 Albe Drive Suite 1C",
                "NEWARK",
                "DE",
                "19702",
                "US"
            ],
            "about_this_seller": "Triplenet Pricing has been in the Consumer Electronics and office supply industry for many years. All of our products are brand new and factory sealed with a warranty (either from us or the manufacturer or both) or your money back. We also guarantee all items to be as described or you will receive a full refund(plus shipping!) . Our philosophy is simple and never changes - Offer the highest quality, brand name products that our customers demand at excellent prices. We do recognize that this is a very competitive industry and that low prices alone can only take us so far. Therefore, at Triplenet Pricing, we combine price, technical \"know how\", honest and straightforward service, speedy shipping, and great customer service.",
            "detailed_information": "Detailed Seller Information Business Name: Delaware Business Address: 86 Albe Drive Suite 1C NEWARK DE 19702 US"
        },
        "feedback": [
            {
                "rating": 5,
                "body": "Tiene un perfume muy agradable ,siempre lo uso lo recomiendo no se van a arrepentir,lo uso ppr años y estoy contento",
                "rater": "By Jorge balarezo on July 24, 2023."
            },
            {
                "rating": 5,
                "body": "Great service",
                "rater": "By Sarah M. on July 24, 2023."
            },
            {
                "rating": 5,
                "body": "As described.....thanks!",
                "rater": "By Stafford T. Decambra on July 24, 2023."
            },
            {
                "rating": 1,
                "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 \"C\" vs \"V\" due to space available and design of keys. Just frustrated that the product was different than advertised or shown.",
                "rater": "By Chad H. on July 24, 2023."
            },
            {
                "rating": 5,
                "body": "Great",
                "rater": "By T.S on July 24, 2023."
            }
        ],
        "feedback_summary": [
            {
                "positive_percent": 75,
                "neutral_percent": 1,
                "negative_percent": 24,
                "count": 366
            },
            {
                "positive_percent": 75,
                "neutral_percent": 2,
                "negative_percent": 23,
                "count": 1019
            },
            {
                "positive_percent": 74,
                "neutral_percent": 2,
                "negative_percent": 24,
                "count": 4078
            },
            {
                "positive_percent": 93,
                "neutral_percent": 2,
                "negative_percent": 5,
                "count": 79603
            }
        ]
    }
}

Last updated