App Details API

  • The App Details API allows you to retrieve detailed information about various types of apps including Chrome, Android, and Progressive Web Apps.

  • The API includes methods to count requested Chrome apps and list devices or users who have requested an extension.

  • To use the App Details API, you need to include the https://www.googleapis.com/auth/chrome.management.appdetails.readonly OAuth scope.

The App Details API enables you to get detailed information about requested or specified apps.

Quick overview of API methods

URLs are relative to https://chromemanagement.googleapis.com/v1/customers/$CUSTOMER

Description Relative URL Http method
Get detailed information about a given Chrome app /apps/chrome/{app_id}@{app_version} GET
Get detailed information about a given Android app /apps/android/{app_id}@{app_version} GET
Get detailed information about a given Progressive Web App /apps/web/{app_id} GET
List requested Chrome apps. /apps:countChromeAppRequests GET
Get a list of devices that have requested to install an extension. /apps:fetchDevicesRequestingExtension GET
Get a list of users that have requested to install an extension. /apps:fetchUsersRequestingExtension GET

See code samples for example requests and responses. Note that the @{app_version} segment is optional; omitting it will return the information of the latest version of the app available.

API scopes

App Details API requires the following OAuth scope:

https://www.googleapis.com/auth/chrome.management.appdetails.readonly

For more information, see the Authentication Overview.