# Amazon autocomplete keyword scraper for product SEO

**Use case:** 

Scrape Amazon autocomplete keyword suggestions from seed products for SEO, PPC, and marketplace research.

## Input

```json
{
  "keywords": [
    "wireless earbuds",
    "laptop stand"
  ],
  "marketplace": "US",
  "alias": "aps",
  "expansionMode": "a-z",
  "customSuffixes": [
    "best",
    "for women",
    "under 50"
  ],
  "maxSuggestionsPerPrefix": 10,
  "maxPrefixes": 20,
  "dedupeSuggestions": true,
  "requestDelayMs": 100
}
```

## Output

```json
{
  "seed": {
    "label": "Seed"
  },
  "expandedPrefix": {
    "label": "Expanded prefix"
  },
  "suggestion": {
    "label": "Suggestion"
  },
  "rank": {
    "label": "Rank"
  },
  "type": {
    "label": "Type"
  },
  "suggType": {
    "label": "Suggestion type"
  },
  "marketplace": {
    "label": "Marketplace"
  },
  "domain": {
    "label": "Domain"
  },
  "mid": {
    "label": "Marketplace ID"
  },
  "alias": {
    "label": "Alias"
  },
  "refTag": {
    "label": "Ref tag"
  },
  "strategyId": {
    "label": "Strategy ID"
  },
  "sourceUrl": {
    "label": "Source URL"
  },
  "fetchedAt": {
    "label": "Fetched at"
  }
}
```

## About this Actor

This example demonstrates how to use [Amazon Autocomplete Scraper](https://apify.com/automation-lab/amazon-autocomplete-scraper) with a specific input configuration. Visit the [Actor detail page](https://apify.com/automation-lab/amazon-autocomplete-scraper) to learn more, explore other use cases, and run it yourself.