analyze_top_keywords
Extract insights by analyzing top-ranking apps for a specific keyword on iOS or Android app stores. Identifies trends and performance metrics for better decision-making.
Input Schema
Name | Required | Description | Default |
---|---|---|---|
country | No | Two-letter country code for store localization. Default 'us'. | us |
keyword | Yes | The keyword or search term to analyze (e.g., 'meditation app', 'puzzle games'). | |
lang | No | Language code for results. Default 'en'. | en |
num | No | Number of top apps ranking for the keyword to analyze (1-50, default 10). These apps will be fetched with full details to provide comprehensive analysis. | |
platform | Yes | The platform (app store) to analyze ('ios' for Apple App Store, 'android' for Google Play Store). |
Input Schema (JSON Schema)
{
"$schema": "http://json-schema.org/draft-07/schema#",
"additionalProperties": false,
"properties": {
"country": {
"default": "us",
"description": "Two-letter country code for store localization. Default 'us'.",
"maxLength": 2,
"minLength": 2,
"type": "string"
},
"keyword": {
"description": "The keyword or search term to analyze (e.g., 'meditation app', 'puzzle games').",
"type": "string"
},
"lang": {
"default": "en",
"description": "Language code for results. Default 'en'.",
"type": "string"
},
"num": {
"default": 10,
"description": "Number of top apps ranking for the keyword to analyze (1-50, default 10). These apps will be fetched with full details to provide comprehensive analysis.",
"type": "number"
},
"platform": {
"description": "The platform (app store) to analyze ('ios' for Apple App Store, 'android' for Google Play Store).",
"enum": [
"ios",
"android"
],
"type": "string"
}
},
"required": [
"keyword",
"platform"
],
"type": "object"
}