Skip to main content

App Uninstalls

Retrieves uninstall statistics for a specified app over a given time period and installation source.

Request
  • Method: GET
  • Endpoint: {{base_url}}/performance/app-uninstalls
Query parameters
Name
Type
Description
app_idRequired
string

The app ID you want to query.

days_backRequired
string

The timeframe for which the statistics are fetched.

Allowed values: Last 30 Days, Last 90 Days, Last 180 Days, Last 365 Days
installation_sourceRequired
string

The download source for the app. Use All Sources to retrieve all the the sources.

Additional parameters
Name
In
Type
Description
x-api-token
header
N/A
Response
200

App Uninstalls

FieldType
rows.unique_reinstallsinteger
rows.installation_sourcestring
rows.app_idstring
rows.unique_uninstallationsinteger
rows.updated_atstring
rows.application_namestring
rows.total_uninstallationsinteger
rows.uninstall_datestring
columns.friendly_namestring
columns.typestring
columns.namestring
Security
  • ApiKeyAuth
Request
{{base_url}}/performance/app-uninstalls?app_id=%7Bapp_id%7D&days_back=Last%2030%20Days&installation_source=%7Binstallation_source%7D
Response
{
  "rows": [
    {
      "unique_reinstalls": "integer",
      "installation_source": "string",
      "app_id": "string",
      "unique_uninstallations": "integer",
      "updated_at": "string",
      "application_name": "string",
      "total_uninstallations": "integer",
      "uninstall_date": "date"
    }
  ],
  "columns": [
    {
      "friendly_name": "string",
      "type": "string",
      "name": "string"
    }
  ]
}