Amazon Keywords Discovery Tool avatar

Amazon Keywords Discovery Tool

Pricing

Pay per event

Go to Apify Store
Amazon Keywords Discovery Tool

Amazon Keywords Discovery Tool

Discover Amazon autocomplete keyword suggestions by marketplace for listing SEO, PPC research, and ecommerce content planning.

Pricing

Pay per event

Rating

0.0

(0)

Developer

Stas Persiianenko

Stas Persiianenko

Maintained by Community

Actor stats

0

Bookmarked

2

Total users

1

Monthly active users

4 days ago

Last modified

Categories

Share

Discover Amazon autocomplete keyword suggestions from seed phrases for marketplace SEO, product listing optimization, PPC research, and ecommerce content planning.

The actor calls Amazon's public autocomplete suggestion endpoint and returns ranked keyword ideas by marketplace, locale, seed keyword, and expansion query.

What does Amazon Keywords Discovery Tool do?

It turns a small list of seed keywords into Amazon search suggestions.

For example, a seed such as wireless mouse can be expanded into queries like wireless mouse a, wireless mouse b, and wireless mouse c.

Each query returns suggestions that Amazon exposes to shoppers in the search box.

Who is it for?

Amazon sellers and brand owners

Use the actor before writing or refreshing a listing. Start from a product phrase such as wireless mouse, expand it with alphabet mode, and export buyer-language variants for titles, bullets, backend search terms, A+ content briefs, and competitor listing reviews.

Ecommerce and marketplace agencies

Run repeatable keyword discovery for multiple client categories without manually typing every seed into Amazon. Agencies can save one Apify task per client or marketplace, compare results over time, and deliver CSV keyword briefs with source URLs and timestamps.

Amazon PPC and growth teams

Use autocomplete suggestions as a lightweight source of campaign expansion ideas. The output can be clustered into exact, phrase, and broad-match research lists, then checked against existing search-term reports before adding new campaign targets.

SEO and content teams

Map marketplace search intent before writing buying guides, comparison pages, or category content. The marketplace and locale fields make it easier to separate US, UK, DE, FR, and other regional wording.

Product researchers and category managers

Spot buyer modifiers such as size, color, audience, use case, bundle terms, and price-sensitive phrases. Re-running the same seeds on a schedule can reveal how category language changes around seasons and promotions.

Why use this actor?

Amazon autocomplete is close to buyer intent.

Suggestions can reveal product attributes, use cases, sizes, audiences, and modifiers that shoppers actually type.

The actor keeps the workflow simple: provide seeds, choose a marketplace, export suggestions.

What data can you extract?

FieldDescription
seedKeywordOriginal keyword provided in input
expandedQueryQuery sent to Amazon autocomplete
marketplaceMarketplace preset such as US, UK, or DE
localeLocale parameter used for the request
suggestionAutocomplete keyword suggestion
suggestionTypeAmazon suggestion type
rankSuggestion order in the response
refTagAmazon ref tag when returned
strategyIdAmazon strategy identifier when returned
sourceUrlRequest URL used for traceability
fetchedAtTimestamp of extraction
metadataOptional raw response metadata

How much does it cost to discover Amazon keyword suggestions?

This actor uses pay-per-event pricing: a small one-time run start charge plus a per-suggestion charge for each saved dataset item. You only pay for keyword suggestions that are actually written to the dataset.

Current launch pricing is:

Plan tierStart eventSaved suggestion
FREE$0.005$0.000024099
BRONZE$0.005$0.000020956
SILVER$0.005$0.000016346
GOLD$0.005$0.000012574
PLATINUM$0.005$0.000010000
DIAMOND$0.005$0.000010000

Example estimates before Apify platform fees or plan-specific credits:

  • A quick seed-only check that saves 10 suggestions costs about $0.00524 on FREE or $0.00521 on BRONZE.
  • A small alphabet run that saves 250 suggestions costs about $0.01102 on FREE or $0.01024 on BRONZE.
  • A broader research run that saves 1,000 suggestions costs about $0.02910 on FREE, $0.02596 on BRONZE, $0.02135 on SILVER, or $0.01757 on GOLD.

Start with one or two seeds and maxSuggestionsPerQuery around 10. After the output quality looks useful, increase the number of seeds or switch from none to alphabet / alphanumeric expansion.

Input overview

The main input is seedKeywords.

You can also configure the marketplace, expansion strategy, deduplication, metadata inclusion, and request delay.

Example input

{
"seedKeywords": ["wireless mouse", "standing desk"],
"marketplace": "US",
"maxSuggestionsPerQuery": 10,
"expansionMode": "alphabet",
"dedupe": true,
"includeMetadata": true,
"delayMs": 150
}

Expansion modes

none queries only the seed keyword.

alphabet queries the seed and suffixes a through z.

alphanumeric queries the seed, suffixes a through z, and suffixes 0 through 9.

custom uses the suffixes you provide in customExpansions.

Marketplace support

The actor includes presets for these marketplaces:

  • United States
  • United Kingdom
  • Germany
  • France
  • Italy
  • Spain
  • Canada
  • Mexico
  • Australia
  • Japan
  • India

How to run it

  1. Open the actor on Apify.
  2. Enter one or more seed keywords.
  3. Select the Amazon marketplace.
  4. Choose an expansion mode.
  5. Start the run.
  6. Export the dataset as JSON, CSV, Excel, XML, or RSS.

Output example

{
"seedKeyword": "wireless mouse",
"expandedQuery": "wireless mouse a",
"marketplace": "US",
"locale": "en_US",
"suggestion": "wireless mouse and keyboard",
"suggestionType": "KEYWORD",
"rank": 1,
"strategyId": "p13n-expert-pd-ops-ranker",
"sourceUrl": "https://completion.amazon.com/api/2017/suggestions?...",
"fetchedAt": "2026-06-21T00:00:00.000Z"
}

Tips for better Amazon keyword research

Start with category-level terms.

Run alphabet expansion for broad discovery.

Use custom suffixes for buyer modifiers such as for kids, for women, for travel, or under 50.

Keep deduplication enabled for clean exports.

Compare marketplaces when localizing listings.

Integrations

Send output to Google Sheets for keyword clustering.

Export CSV into PPC tools for campaign planning.

Use Apify webhooks to trigger downstream enrichment after each run.

Connect the dataset to BI tools for recurring marketplace monitoring.

API usage with Node.js

import { ApifyClient } from 'apify-client';
const client = new ApifyClient({ token: process.env.APIFY_TOKEN });
const run = await client.actor('automation-lab/amazon-keywords-discovery-tool').call({
seedKeywords: ['wireless mouse'],
marketplace: 'US',
expansionMode: 'alphabet'
});
console.log(run.defaultDatasetId);

API usage with Python

from apify_client import ApifyClient
import os
client = ApifyClient(os.environ['APIFY_TOKEN'])
run = client.actor('automation-lab/amazon-keywords-discovery-tool').call(run_input={
'seedKeywords': ['wireless mouse'],
'marketplace': 'US',
'expansionMode': 'alphabet',
})
print(run['defaultDatasetId'])

API usage with cURL

curl -X POST "https://api.apify.com/v2/acts/automation-lab~amazon-keywords-discovery-tool/runs?token=$APIFY_TOKEN" \
-H 'Content-Type: application/json' \
-d '{"seedKeywords":["wireless mouse"],"marketplace":"US","expansionMode":"alphabet"}'

MCP integration

Use the actor from Claude Desktop or Claude Code through Apify MCP.

MCP URL:

https://mcp.apify.com/?tools=automation-lab/amazon-keywords-discovery-tool

Claude Code setup:

$claude mcp add apify https://mcp.apify.com/?tools=automation-lab/amazon-keywords-discovery-tool

Claude Desktop JSON config:

{
"mcpServers": {
"apify-amazon-keywords": {
"url": "https://mcp.apify.com/?tools=automation-lab/amazon-keywords-discovery-tool"
}
}
}

Example prompts for MCP usage:

  • Via MCP, use the Amazon Keywords Discovery Tool to find autocomplete suggestions for wireless mouse in the US marketplace.
  • Via MCP, run Amazon keyword discovery for standing desk with alphabet expansion and dedupe the results.
  • Via MCP, compare Amazon autocomplete keyword suggestions for lunch box in US and UK marketplaces.

Data quality notes

Amazon may personalize, localize, or reorder suggestions.

Suggestions can change over time.

The actor stores the fetch timestamp and source URL for traceability.

Troubleshooting: I got fewer results than expected

Autocomplete suggestions are not guaranteed for every expanded query.

Try broader seed keywords, disable dedupe, or use custom suffixes.

Troubleshooting: Some metadata fields are empty

Amazon does not return every metadata field for every suggestion.

Core fields such as suggestion, rank, seed keyword, expanded query, marketplace, and timestamp remain available.

Legality and responsible use

This actor extracts public autocomplete suggestions visible through Amazon search experiences.

Use the data responsibly and comply with applicable laws, platform terms, and your internal policies.

Do not use the actor to collect private account data.

Related Automation Lab actors:

FAQ

Can I choose a marketplace?

Yes. Use the marketplace input to choose a preset such as US, UK, DE, FR, IT, ES, CA, MX, AU, JP, or IN.

Does the actor need cookies?

No. The MVP uses Amazon's public autocomplete endpoint without login cookies.

Does it use a browser?

No. It is an HTTP/API actor, so runs are lightweight.

Can I export to CSV?

Yes. Apify datasets can be exported as CSV, JSON, Excel, XML, HTML, or RSS.

Can I monitor keywords repeatedly?

Yes. Schedule the actor in Apify and compare datasets over time.

Changelog

Initial version: Amazon autocomplete keyword discovery with marketplace presets, expansion modes, dedupe, and metadata export.

Practical workflow: listing refresh

  1. Export the current listing title, bullets, and backend keyword seeds.
  2. Run the actor with 5-20 seed phrases and alphabet expansion.
  3. Deduplicate suggestions and group them by modifier, use case, audience, and attribute.
  4. Compare the groups against your existing listing copy.
  5. Add relevant missing phrases to listing copy, backend terms, or a content brief.

Practical workflow: PPC expansion

  1. Start from converting product terms or search-term report winners.
  2. Use alphabet expansion to discover long-tail variants.
  3. Remove brand names, irrelevant products, and terms you already target.
  4. Cluster the remaining suggestions by intent.
  5. Test shortlisted terms in exact, phrase, or broad campaigns.

Practical workflow: marketplace localization

Run the same seed set across two or more marketplaces, for example US and UK or DE and FR. Compare the suggestion and locale fields to find regional spelling, category wording, and buyer modifiers before localizing listing copy or PPC campaigns.

Practical workflow: recurring monitoring

Schedule the actor weekly or monthly with the same seeds. Store each dataset and compare suggestion lists over time to catch new modifiers, seasonal searches, and disappearing terms. The fetchedAt and sourceUrl fields make exports auditable.

Cost-control tips

Use none mode for quick checks and alphabet mode for deeper discovery. Keep maxSuggestionsPerQuery at 10 unless you have a specific reason to request more. Enable deduplication for most research exports so repeated suggestions are charged and stored only once.