Scrapingdog

Amazon Search Scraper

The Amazon Search Scraper API retrieves search result listings from Amazon for any query. Returns an object with results (product titles, prices, ratings, review counts, sponsored status, ASINs) and pagination (array of next-page URLs). Each successful request costs 1 API credit.

Endpoint: https://api.scrapingdog.com/amazon/search

API Parameters

πŸ”‘

Scrapingdog Parameters

  • api_key Required
    Your personal API key. Available on your dashboard.

    Type: String
πŸ”

Search

  • query Required
    The search query string to look up on Amazon.

    Type: String
  • domain Required
    The TLD extension of the Amazon domain. Examples: com, in, de, fr, co.uk. For a complete list of supported TLDs, refer to Amazon Supported TLDs.

    Type: String
  • page Required
    The page number of results to retrieve. Starts at 1.

    Type: String
🌍

Localization

  • country Required
    ISO country code for targeting a specific Amazon marketplace. Costs 5 credits per request except USA which costs 1 credit. Default: us. For a complete list of supported countries, refer to Amazon Supported Countries.

    Type: String
  • language Optional
    Standard ISO 639-1 language codes (e.g., en, de, fr) to specify the language for product data.

    Type: String
  • postal_code Optional
    To get data from a particular postal code.

    Type: String
βš™

️ Advanced

  • premium Optional
    Set to true to use premium proxies for scraping Amazon, which increases the chances of retrieving sponsored results. Default: false. Costs 25 credits per request.

    Type: String

API Examples

Code to Integrate
curl "https://api.scrapingdog.com/amazon/search?api_key=APIKEY&domain=com&query=spoon&page=1&country=us"
API Response
{
  "search_message": "",
  "location": "Delivering to Southfield 48033",
  "results": [
    {
      "type": "search_product",
      "title": "Dealusy 360 Count Clear Plastic Spoons Disposable, BPA-Free, Heat Resistant, Solid and Durable Disposable Spoons Heavy Duty Bulk, Premium Spoons plastic disposable for Party Supply",
      "image": "https://m.media-amazon.com/images/I/61aQ1GCEBqL._AC_UL320_.jpg",
      "has_prime": false,
      "is_best_seller": false,
      "is_amazon_choice": false,
      "limited_time_deal": false,
      "deal_of_the_day": false,
      "stars": "4.8",
      "total_reviews": "1.6K",
      "optimized_url": "https://www.amazon.com/Plastic-Disposable-BPA-Free-Resistant-disposable/dp/B0CDV36NF6",
      "sponsored": false,
      "number_of_people_bought": "8K+ bought in past month",
      "asin": "B0CDV36NF6",
      "availability_quantity": null,
      "price_string": "$29.99",
      "price_symbol": "$",
      "price": "$29.99",
      "extracted_price": 29.99,
      "currency": "$",
      "climate_pledge_friendly": false,
      "absolute_position": 1,
      "organic_position": 1
    },
    {
      "type": "search_product",
      "title": "Settings White Plastic Teaspoons, 1000 Count - Heavy-Duty Disposable Teaspoons, BPA-Free Bulk Plastic Cutlery for Parties, Weddings, Catering & Everyday Use",
      "image": "https://m.media-amazon.com/images/I/51AyyUBRJiL._AC_UL320_.jpg",
      "has_prime": false,
      "is_best_seller": false,
      "is_amazon_choice": false,
      "limited_time_deal": false,
      "deal_of_the_day": false,
      "stars": "4.3",
      "total_reviews": "238",
      "optimized_url": "https://www.amazon.com/Settings-White-Plastic-Teaspoons-Count/dp/B01ELNQBHW",
      "sponsored": true,
      "certification": "Small Business",
      "asin": "B01ELNQBHW",
      "availability_quantity": null,
      "price_string": "$19.99",
      "price_symbol": "$",
      "price": "$19.99",
      "extracted_price": 19.99,
      "currency": "$",
      "climate_pledge_friendly": true,
      "absolute_position": 2
    }
  ],
  "pagination": [
    "https://www.amazon.com/s?k=spoon&page=2&qid=1782422862&ref=sr_pg_2",
    "https://www.amazon.com/s?k=spoon&page=3&qid=1782422862&ref=sr_pg_3",
    "https://www.amazon.com/s?k=spoon&page=4&qid=1782422862&ref=sr_pg_4"
  ]
}