app-store-suggest
Retrieve App Store search suggestions with priority rankings to identify trending and high-traffic keywords for app research and market analysis.
Instructions
Get search suggestions from the App Store. Returns an array of objects with:
term: Suggested search term Each suggestion has a priority from 0 (low traffic) to 10000 (most searched)
Input Schema
Name | Required | Description | Default |
---|---|---|---|
term | Yes | Search term to get suggestions for |
Input Schema (JSON Schema)
{
"$schema": "http://json-schema.org/draft-07/schema#",
"additionalProperties": false,
"properties": {
"term": {
"description": "Search term to get suggestions for",
"type": "string"
}
},
"required": [
"term"
],
"type": "object"
}