get_version_history
Retrieve version history details for apps on iOS and Android platforms, including changelogs and store localization based on app ID and country code.
Input Schema
Name | Required | Description | Default |
---|---|---|---|
appId | Yes | The unique identifier for the app (Android package name, iOS numeric ID or bundle ID). | |
country | No | Two-letter country code for store localization. Default 'us'. | us |
lang | No | Language code for the results (e.g., changelog text). Default 'en'. | en |
platform | Yes | The platform of the app. Note: Due to current API limitations, **only the latest version details are reliably returned for both platforms.** |
Input Schema (JSON Schema)
{
"$schema": "http://json-schema.org/draft-07/schema#",
"additionalProperties": false,
"properties": {
"appId": {
"description": "The unique identifier for the app (Android package name, iOS numeric ID or bundle ID).",
"type": "string"
},
"country": {
"default": "us",
"description": "Two-letter country code for store localization. Default 'us'.",
"maxLength": 2,
"minLength": 2,
"type": "string"
},
"lang": {
"default": "en",
"description": "Language code for the results (e.g., changelog text). Default 'en'.",
"type": "string"
},
"platform": {
"description": "The platform of the app. Note: Due to current API limitations, **only the latest version details are reliably returned for both platforms.**",
"enum": [
"ios",
"android"
],
"type": "string"
}
},
"required": [
"appId",
"platform"
],
"type": "object"
}