google-play-permissions
Retrieve and analyze permissions required by Google Play apps. Returns detailed permissions and categories or a simplified list, customizable by language and country.
Instructions
Get permissions required by a Google Play app. Returns a list of permissions with:
permission: Description of the permission (e.g., 'modify storage contents')
type: Permission category (e.g., 'Storage', 'Network')
When short=true, returns just an array of permission strings. Note: Permissions are returned in the specified language.
Input Schema
Name | Required | Description | Default |
---|---|---|---|
appId | Yes | Google Play package name (e.g., 'com.dxco.pandavszombies') | |
country | No | Country code to check app (default: us) | us |
lang | No | Language code for permission text (default: en) | en |
short | No | Return only permission names without categories (default: false) |
Input Schema (JSON Schema)
{
"$schema": "http://json-schema.org/draft-07/schema#",
"additionalProperties": false,
"properties": {
"appId": {
"description": "Google Play package name (e.g., 'com.dxco.pandavszombies')",
"type": "string"
},
"country": {
"default": "us",
"description": "Country code to check app (default: us)",
"type": "string"
},
"lang": {
"default": "en",
"description": "Language code for permission text (default: en)",
"type": "string"
},
"short": {
"default": false,
"description": "Return only permission names without categories (default: false)",
"type": "boolean"
}
},
"required": [
"appId"
],
"type": "object"
}