The Amazon Search Scraper enables you to extract search results from Amazon based on specific queries. It provides a structured list of products and their details, empowering you to analyze trends and monitor market activity effectively.

  • Product Name, Price, and Discount Details
  • Ratings and Review Counts
  • Product URLs and Images
  • Related Searches and Sponsored Products

Example Use Cases:

  • Market Research: Identify trending products and evaluate their popularity.
  • Demand Analysis: Understand product search trends in specific regions or categories.

Supported Query Parameters

PARAMETERTYPEDEFAULTDESCRIPTION
query requiredstringThe search term you want to query on Amazon. Must be URL-encoded. Example: Echo+Dot.
urlstring <uri>The URL of the search results page to retrieve. Example: https://www.amazon.com/s?k=Echo+Dot.
tldstring.comThe top-level domain of the Amazon website. Supported values: .com, .it, .de, etc.
countrystringusThe originating country for the product retrieval. Example: country=es.
outputstringjsonThe format of the response. Supported values: json, csv.

How to Setup

Request the search endpoint with the desired query:

https://ecommerce.api.zenrows.com/v1/targets/amazon/search/{query}?apikey=YOUR_ZENROWS_API_KEY

Code Examples

{query} must be encoded.

Response Example

{
    "pagination": {
        "current_page": 1
    },
    "products_list": [
        {
            "discount": true,
            "price": 999.99,
            "price_before_discount": 1899.99,
            "price_currency_code": "USD",
            "price_currency_symbol": "$",
            "product_image": "https://m.media-amazon.com/images/I/515EDfBsGvL._AC_US40_.jpg",
            "product_name": "iPhone 15",
            "product_url": "https://www.amazon.com/dp/B09B9J9J9J9",
            "rating_score": 4.5,
            "review_count": 5000
        }
    ],
    "query": "iphone 15",
    "related_searches": [
        {
            "query": "iphone 15 pro",
            "query_url": "/s?k=iphone%2015%20pro"
        }
    ],
    "sponsored_product_list": [
        {
            "discount": true,
            "price": 999.99,
            "price_before_discount": 1899.99,
            "price_currency_code": "USD",
            "price_currency_symbol": "$",
            "product_image": "https://m.media-amazon.com/images/I/515EDfBsGvL._AC_US40_.jpg",
            "product_name": "iPhone 15",
            "product_url": "https://www.amazon.com/dp/B09B9J9J9J9",
            "rating_score": 4.5,
            "review_count": 5000
        }
    ]
}

Troubleshooting and FAQs