# Get PPC keyword ideas from Amazon autocomplete

**Use case:** 

Returns Amazon's own autocomplete completions for the prefixes you give it, which is the closest public signal to what shoppers actually type into Amazon search. Sellers use it to build a starting keyword list for a Sponsored Products campaign or a listing rewrite, without paying for a keyword tool subscription.

## Input

```json
{
  "mode": "suggestions",
  "search": [
    "yoga mat",
    "protein powder"
  ],
  "asins": [
    "B09XS7JWHH",
    "https://www.amazon.com/dp/B08N5WRWNW"
  ],
  "category": [
    "electronics",
    "books"
  ],
  "sellerIds": [
    "A2L77EE7U53NWQ"
  ],
  "marketplace": "com",
  "maxItems": 100,
  "maxPagesPerQuery": 1,
  "maxConcurrency": 8,
  "proxyConfiguration": {
    "useApifyProxy": true,
    "apifyProxyGroups": [
      "RESIDENTIAL"
    ]
  }
}
```

## Output

```json
{
  "type": {
    "label": "Item type",
    "format": "text"
  },
  "mode": {
    "label": "Mode",
    "format": "text"
  },
  "marketplace": {
    "label": "Marketplace",
    "format": "text"
  },
  "rank": {
    "label": "Rank",
    "format": "number"
  },
  "asin": {
    "label": "ASIN",
    "format": "text"
  },
  "title": {
    "label": "Title",
    "format": "text"
  },
  "brand": {
    "label": "Brand",
    "format": "text"
  },
  "price": {
    "label": "Price",
    "format": "number"
  },
  "currency": {
    "label": "Currency",
    "format": "text"
  },
  "listPrice": {
    "label": "List price",
    "format": "number"
  },
  "rating": {
    "label": "Rating",
    "format": "number"
  },
  "reviewCount": {
    "label": "Reviews",
    "format": "number"
  },
  "keyword": {
    "label": "Keyword",
    "format": "text"
  },
  "url": {
    "label": "URL",
    "format": "link"
  }
}
```

## About this Actor

This example demonstrates how to use [Amazon Product Scraper - Search, Best Sellers](https://apify.com/automation_craft/amazon-data-scraper.md) with a specific input configuration. Visit the [Actor detail page](https://apify.com/automation_craft/amazon-data-scraper.md) to learn more, explore other use cases, and run it yourself.


## How to integrate an Actor?

This Task's input is already configured above. Use it as-is rather than inventing a new one.

Do not guess an integration path. Every one of them is in the agent quickstart at https://apify.com/agents.md: the Apify MCP server, Agent Skills with the Apify CLI, the JavaScript and Python clients, the REST API, and the account-free path for an agent with no human to sign in. It also carries the rule on stating cost before the first paid run.

For full API examples (JavaScript, Python, CLI, MCP, OpenAPI), see this Task's Actor page: https://apify.com/automation_craft/amazon-data-scraper.md

Each client library has reference documentation the quickstart does not restate: [JavaScript/TypeScript](https://docs.apify.com/api/client/js/docs.md) (`npm install apify-client`) and [Python](https://docs.apify.com/api/client/python/docs.md) (`pip install apify-client`).
