get_keyword_scores
Analyze keyword performance for App Store Optimization by providing scores specific to iOS or Android platforms. Input a keyword, platform, and optional country code for targeted insights.
Input Schema
Name | Required | Description | Default |
---|---|---|---|
country | No | Two-letter country code for localization. Default 'us'. | us |
keyword | Yes | The keyword to analyze for App Store Optimization. | |
platform | Yes | The platform to analyze the keyword for ('ios' or 'android'). |
Input Schema (JSON Schema)
{
"$schema": "http://json-schema.org/draft-07/schema#",
"additionalProperties": false,
"properties": {
"country": {
"default": "us",
"description": "Two-letter country code for localization. Default 'us'.",
"maxLength": 2,
"minLength": 2,
"type": "string"
},
"keyword": {
"description": "The keyword to analyze for App Store Optimization.",
"type": "string"
},
"platform": {
"description": "The platform to analyze the keyword for ('ios' or 'android').",
"enum": [
"ios",
"android"
],
"type": "string"
}
},
"required": [
"keyword",
"platform"
],
"type": "object"
}