amazon_autocomplete
Get keyword suggestions from Amazon's autocomplete feature by entering partial search terms. Supports localization with domain and language parameters.
Instructions
Retrieves keyword suggestions from Amazon's autocomplete feature based on partial search terms. Useful for keyword research and search-driven features. [Credits: 5 API credits per successful request.] Notes: All search-related params (prefix, last_prefix, suffix, mid) and localization params (domain, language) are documented as Optional, though prefix is effectively required in practice to get meaningful suggestions. Returns: [ {type: "KEYWORD", keyword: "..."}, ... ] — flat array of suggestion objects.
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| mid | No | Merchant ID for identifying a specific seller to scope suggestions. | |
| domain | No | TLD extension of the Amazon domain. Examples: com, in, de, fr. See Amazon Supported TLDs doc for the full list. | |
| prefix | No | The partial search term that Amazon uses to generate keyword suggestions (e.g. spoon, iph). | |
| suffix | No | Assists with search query completion and predictions. | |
| language | No | Language code for suggestions (e.g. en, es, fr, de). (default: en) | |
| last_prefix | No | Indicates previously typed characters. For example, if the user typed 'i' then 'phone', set last_prefix=i. |