get_developer_info
Retrieve developer metadata and app details from iOS and Android app stores by specifying the developer ID, platform, and optional localization preferences.
Input Schema
Name | Required | Description | Default |
---|---|---|---|
country | No | Two-letter country code for store localization. Default 'us'. | us |
developerId | Yes | The developer identifier. For Android: the name (e.g., 'Google LLC') or ID ('570031...'). For iOS: the numeric artist ID (e.g., '284882218') or the developer name ('Facebook'). If a name is provided for iOS, the tool will attempt to find the numeric ID. | |
includeApps | No | Whether to fetch and include details of the developer's apps in the response (up to 100 for Android, potentially more for iOS). Setting to false returns only developer metadata. | |
lang | No | Language code for results. Default 'en'. | en |
platform | Yes | The platform associated with the developer ('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 store localization. Default 'us'.",
"maxLength": 2,
"minLength": 2,
"type": "string"
},
"developerId": {
"description": "The developer identifier. For Android: the name (e.g., 'Google LLC') or ID ('570031...'). For iOS: the numeric artist ID (e.g., '284882218') or the developer name ('Facebook'). If a name is provided for iOS, the tool will attempt to find the numeric ID.",
"type": "string"
},
"includeApps": {
"default": true,
"description": "Whether to fetch and include details of the developer's apps in the response (up to 100 for Android, potentially more for iOS). Setting to false returns only developer metadata.",
"type": "boolean"
},
"lang": {
"default": "en",
"description": "Language code for results. Default 'en'.",
"type": "string"
},
"platform": {
"description": "The platform associated with the developer ('ios' or 'android').",
"enum": [
"ios",
"android"
],
"type": "string"
}
},
"required": [
"developerId",
"platform"
],
"type": "object"
}