Amazon Autocomplete Scraper

This API can be used for scraping suggestions from any product page from Amazon. All you need is the query for the search.

You have to send a GET request to https://api.scrapingdog.com/amazon/autocomplete with the below-given parameters.

Scrapingdog Parameters

Parameter
Description

api_key

required

Your personal API key. Available on your dashboard

Type: String

Search Query

Parameter
Description

prefix

prefix represent the partial search term that Amazon uses to generate keyword suggestions. Type: String

last_prefix

This indicate that the user first typed "i" and then continued typing "phone" (leading to "iphone"). Type: String

mid

In Amazon URLs, mid often refers to the Merchant IDrting, which identifies a specific seller on the platform. Type: String

suffix

The suffix parameter in the Amazon Suggestions API plays a key role in handling search query completion and predictions. Type: String

Language

Parameter
Description

language

Language of the results. Possible Values - en, es, fr, de, etc. Default Value - en Type - String

curl "https://api.scrapingdog.com/amazon/autocomplete?api_key=5eaa61a6e562fc52fe763tr516e4653&domain=com&prefix=spoon"

Response

[
    {
        "type": "KEYWORD",
        "keyword": "cricket noise maker prank"
    },
    {
        "type": "KEYWORD",
        "keyword": "cricket printer"
    },
    {
        "type": "KEYWORD",
        "keyword": "cricket"
    },
    {
        "type": "KEYWORD",
        "keyword": "cricket bat"
    },
    {
        "type": "KEYWORD",
        "keyword": "live crickets"
    },
    {
        "type": "KEYWORD",
        "keyword": "cricket phones"
    },
    {
        "type": "KEYWORD",
        "keyword": "cricket keeper"
    },
    {
        "type": "KEYWORD",
        "keyword": "live crickets for reptiles"
    },
    {
        "type": "KEYWORD",
        "keyword": "cricket ball"
    },
    {
        "type": "KEYWORD",
        "keyword": "cricket shoes men"
    }
]

Last updated