labs_app_store_app_competitors
Analyze App Store competitors by identifying similar apps based on app ID, location, and language to inform competitive research and market positioning strategies.
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| app_id | Yes | App Store app ID | |
| language_code | No | The language code for the search | |
| limit | No | Maximum number of results to return | |
| location_code | No | The location code for the search | |
| offset | No | Offset for pagination |
Input Schema (JSON Schema)
{
"properties": {
"app_id": {
"description": "App Store app ID",
"type": "string"
},
"language_code": {
"description": "The language code for the search",
"type": "string"
},
"limit": {
"description": "Maximum number of results to return",
"type": "number"
},
"location_code": {
"description": "The location code for the search",
"type": "number"
},
"offset": {
"description": "Offset for pagination",
"type": "number"
}
},
"required": [
"app_id"
],
"type": "object"
}