app_data_app_store_app_info
Retrieve App Store app information including metadata, ratings, and performance data for SEO analysis and competitive research using app ID and location parameters.
Input Schema
Name | Required | Description | Default |
---|---|---|---|
app_id | Yes | App Store App ID | |
language_code | No | Language code | |
language_name | No | Language name | |
location_code | No | Location code | |
location_name | No | Location name |
Input Schema (JSON Schema)
{
"properties": {
"app_id": {
"description": "App Store App ID",
"type": "string"
},
"language_code": {
"description": "Language code",
"type": "string"
},
"language_name": {
"description": "Language name",
"type": "string"
},
"location_code": {
"description": "Location code",
"type": "number"
},
"location_name": {
"description": "Location name",
"type": "string"
}
},
"required": [
"app_id"
],
"type": "object"
}