openaso

tools / suggest

suggest

read-only

Keyword suggestions

What does the App Store itself suggest when users start typing?

suggest is an App Store autocomplete API: it returns the suggestions Apple shows in the store's search box for a seed term, in the order Apple ranks them. Those suggestions are the store steering real demand — users tap them instead of finishing their query — which makes autocomplete the highest-signal, lowest-cost keyword discovery source there is.

Suggestions are per storefront and language: habit autocompletes differently in the US and in Japan. Each country in the call is queried separately against Apple's public MZSearchHints endpoint — the same one the store client uses.

The list is discovery input, not a verdict. Feed promising suggestions into volume for a demand number, competitors for who wins them today, and rank for where you stand.

worked example

What does the US App Store suggest for the seed “habit”?

tools/call → suggest
{
  "name": "suggest",
  "arguments": {
    "keyword": "habit",
    "countries": [
      "US"
    ]
  }
}
suggest → structuredContent
{
  "keyword": "habit",
  "storefronts": [
    {
      "country": "US",
      "suggestions": [
        "habit tracker",
        "the habit burger grill",
        "habitica",
        "habit",
        "habitshare",
        "habitify",
        "plainhabit: habit tracker",
        "habit tracker free",
        "habitkit",
        "habitlink"
      ]
    }
  ]
}

real response, captured 2026-07-29 — trimmed only where marked with …

when to use it

description — as served to agents

App Store search-autocomplete suggestions for a seed term, per storefront — the terms Apple itself suggests to users typing in the store, in suggestion order. Use for keyword discovery: feed promising suggestions into rank/volume/competitors.

input

keyword *
string
Seed term to autocomplete
countries
string[]
2-letter storefront codes, e.g. ["US", "GB", "JP"]. Each storefront is queried separately; at most 25 per call.(default ["US"])

output

keyword *
string
storefronts *
object[]
country *
string
suggestions *
string[]

pairs with

volumescore discovered suggestions for demandauditdiscovery + scoring packaged into one callcompetitorssee who wins each suggestion today
endpoint https://mcp.openaso.ai/mcp · auth Authorization: Bearer <key> · get a key