Scrapingdog

Amazon Autocomplete Scraper

The Amazon Autocomplete Scraper API retrieves keyword suggestions from Amazon's autocomplete feature based on partial search terms. Useful for keyword research and building search-driven features. Each successful request costs 5 API credits.

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

API Parameters

πŸ”‘

Scrapingdog Parameters

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

    Type: String
πŸ”

Search

  • prefix Optional
    The partial search term that Amazon uses to generate keyword suggestions (e.g., spoon, iph).

    Type: String
  • last_prefix Optional
    Indicates previously typed characters. For example, if user typed "i" then "phone", set last_prefix=i.

    Type: String
  • suffix Optional
    Assists with search query completion and predictions.

    Type: String
  • mid Optional
    Merchant ID for identifying a specific seller to scope suggestions.

    Type: String
🌍

Localization

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

    Type: String
  • language Optional
    Language code for suggestions (e.g., en, es, fr, de). Default: en

    Type: String

API Examples

Code to Integrate
curl "https://api.scrapingdog.com/amazon/autocomplete?api_key=APIKEY&domain=com&prefix=spoon"
API Response
[
  {
    "type": "KEYWORD",
    "keyword": "spoon rest for stove top"
  },
  {
    "type": "KEYWORD",
    "keyword": "spoon set"
  },
  {
    "type": "KEYWORD",
    "keyword": "spoon ring"
  },
  {
    "type": "KEYWORD",
    "keyword": "spoon spatula"
  },
  {
    "type": "KEYWORD",
    "keyword": "spoon holder"
  },
  {
    "type": "KEYWORD",
    "keyword": "spoon and fork set"
  },
  {
    "type": "KEYWORD",
    "keyword": "spoon lure"
  },
  {
    "type": "KEYWORD",
    "keyword": "spoon necklace"
  },
  {
    "type": "KEYWORD",
    "keyword": "spoon bait"
  },
  {
    "type": "KEYWORD",
    "keyword": "spoon carving tools"
  }
]