Amazon Seller Profile

ScrapeIN Amazon Seller Profile API Response Description

When using the /seller_profile endpoint in a request to the Amazon Sellers Data API, you will retrieve results from the specified Amazon Domain.

A screenshot of the ScrapeIN Amazon Data API response showing the seller profile category. The response presents product pricing information, including the product name, price, and availability on Amazon. The information is presented in a well-organized table format, ensuring clear readability and comprehension.

ScrapeIN retrieves results from the seller profile page for a single product on Amazon with the following properties:

📘

Note on Seller Profile Results

To retrieve all of the products from a specific seller, you can utilize subsequent requests with the /seller_products endpoint in an iterative manner.

JSON Example

{
  "seller_details": {
    "name": "westlake",
    "store_link": "https://www.amazon.com/s?ie=UTF8&marketplaceID=ATVPDKIKX0DER&me=A21BBMEF3BMW1Z",
    "logo": "https://m.media-amazon.com/images/I/01As+skc6VL.jpg",
    "phone": "1-888-280-4331",
    "rating": 4.8,
    "ratings_total": 8924,
    "ratings_total_percentage": 97,
    "business_name": "SILICON VALLEY COMMERCE LLC",
    "business_address": "16 jessie st, unit 108, SAN FRANCISCO, CA, 94105, US",
    "business_address_rows": [
      "16 jessie st",
      "unit 108",
      "SAN FRANCISCO",
      "CA",
      "94105",
      "US"
    ],
    "about_this_seller": "Hello there,  Welcome to our WESTLAKE store!  Thank you for choosing WESTLAKE as part of your shopping experience. Your shopping experience is a priority for us; we hope you find what you are looking for. We are committed to providing you with the best online shopping experience through quality products, amazing prices, and 24/7 customer support.  We look forward to serving you.  Have a GREAT day, Team WESTLAKE",
    "detailed_information": "Detailed Seller Information Business Name: SILICON VALLEY COMMERCE LLC Business Address: 16 jessie st unit 108 SAN FRANCISCO CA 94105 US"
  },
  "feedback_summary": {
    "thirty_days": {
      "positive_percent": 98,
      "neutral_percent": 0,
      "negative_percent": 2,
      "count": 578
    },
    "ninety_days": {
      "positive_percent": 97,
      "neutral_percent": 0,
      "negative_percent": 2,
      "count": 2236
    },
    "twelve_months": {
      "positive_percent": 97,
      "neutral_percent": 0,
      "negative_percent": 3,
      "count": 8924
    },
    "lifetime": {
      "positive_percent": 96,
      "neutral_percent": 0,
      "negative_percent": 4,
      "count": 24707
    }
  },
  "feedback": [
    {
      "rating": 1,
      "body": "Did not send the right one. I got general tsos instead of Korean bbq.",
      "rater": "By Alejandra on June 30, 2023."
    },
    {
      "rating": 5,
      "body": "Sold as described and I highly recommend this seller.",
      "rater": "By Dun review'in on June 30, 2023."
    },
    {
      "rating": 1,
      "body": "This arrived broken inside the packaging, and it was leaking. I was told I would be issued a refund, but I was not.",
      "rater": "By Maria on June 30, 2023."
    },
    {
      "rating": 5,
      "body": "Great chocolate delivered within 36 hours!",
      "rater": "By Christine Munson on June 30, 2023."
    },
    {
      "rating": 5,
      "body": "delivery was as expected",
      "rater": "By Merle on June 30, 2023."
    }
  ]
}

ScrapeIN returns the following properties for requests made with the /seller_profile endpoint:

JSON Structure

The JSON structure returned by the API includes required elements, such as request_parameters, request_metadata, pagination, as described in the Results Amazon Data API section. Additionally, it includes parameters specific to the seller profile page for a single seller on Amazon, which are described below.

seller_details

  • name: Represents the brand name of the seller.
  • store_link: Represents a link to the seller's Amazon store.
  • logo: Represents the link to the logo of the seller.
  • phone: Provides the phone number of the seller, if it is shown.
  • rating: Represents the rating of the seller, typically on a scale of 1 to 5.
  • ratings_total: Reflects the total number of customer ratings the seller has received.
  • ratings_total_percentage: Represents the total positive customer ratings percentage the seller has received.
  • business_name: Reflects the name of the business, if it is shown. This is usually the legal name of the business, as opposed to the seller's brand name shown in the name property.
  • business_address: Indicates the address of the seller's business, if it is shown on the seller profile page.
  • business_address_rows: An array representing the address of the seller's business is provided as an array of strings. Each string in the array corresponds to a line of the address if it is displayed on the seller profile page.
  • about_this_seller: Represents a free-form text area populated by the seller, describing themselves.
  • detailed_information: Represents detailed information about the seller. This is a free-form text area populated by the seller, likely to contain their address and contact details.

feedback_summary

An object provides a breakdown of the seller's customer feedback. It includes information for the last 30 days, 90 days, 12 months, and the lifetime of the seller, and also positive, neutral, negative, and total count datapoints.

  • thirty_days: This object contains feedback information for the last 30 days and includes the following parameters:positive_percent: The percentage of positive feedback received in the last 30 days; neutral_percent: The percentage of neutral feedback received in the last 30 days; negative_percent: The percentage of negative feedback received in the last 30 days; count: The total count of feedback received in the last 30 days;
  • ninety_days: This object contains feedback information for the last 90 days and includes the same properties as the thirty_days object.
  • twelve_months: This object contains feedback information for the last 12 months and includes the same properties as the thirty_days object.
  • lifetime: This object contains feedback information over the lifetime of the seller and includes the same properties as the thirty_days object.

feedback

An array contains the customer feedback shown on the seller profile page. Each feedback object in the array has the following properties:

  • rating: The customer rating that is given with the feedback. It is a number ranging from 1 to 5, indicating the satisfaction level of the customer with the seller.
  • body: The body text of the customer feedback. It includes the actual comments or reviews left by the customer regarding their experience with the seller.
  • rater: The name of the customer who provided the feedback about the seller.