# Amazon keyword suggestions task

**Use case:** 

Collect Amazon autocomplete keyword suggestions from seed terms and export long-tail phrases for listing titles, bullets, and backend terms.

## Input

```json
{
  "keywords": [
    "laptop stand",
    "coffee grinder"
  ],
  "marketplace": "amazon.com",
  "expansionMode": "full",
  "customExpansions": [
    "best",
    "for kids",
    "under 50"
  ],
  "resultOrder": "source",
  "maxSuggestionsPerKeyword": 100,
  "maxTotalResults": 250
}
```

## Output

```json
{
  "suggestion": {
    "label": "Suggestion",
    "format": "string"
  },
  "seedKeyword": {
    "label": "Seed keyword",
    "format": "string"
  },
  "marketplace": {
    "label": "Marketplace",
    "format": "string"
  },
  "locale": {
    "label": "Locale",
    "format": "string"
  },
  "query": {
    "label": "Query",
    "format": "string"
  },
  "expansionMode": {
    "label": "Expansion mode",
    "format": "string"
  },
  "expansionToken": {
    "label": "Expansion token",
    "format": "string"
  },
  "rank": {
    "label": "Rank",
    "format": "integer"
  },
  "sourcePosition": {
    "label": "Source position",
    "format": "integer"
  },
  "thumbnailImageUrl": {
    "label": "Thumbnail image URL",
    "format": "string"
  }
}
```

## About this Actor

This example demonstrates how to use [Amazon Keywords Discovery Tool](https://apify.com/maximedupre/amazon-keywords-discovery-tool) with a specific input configuration. Visit the [Actor detail page](https://apify.com/maximedupre/amazon-keywords-discovery-tool) to learn more, explore other use cases, and run it yourself.