Skip to main content
Google Play Console exports owner reports to a private Google Cloud Storage bucket. These reports are the source for many dashboard metrics, including installs, ratings, crashes, store listing conversion, search terms, sales, and earnings.
The reports bucket is account-level. It is not a normal customer-created GCS bucket and it is not stored inside the customer’s Google Cloud project.

Reports Bucket

Common report paths look like this:
When saving credentials, pass only the bucket root:
If a customer pastes a full gs://.../stats/... path, Appeeky normalizes it to the bucket root automatically.

Required Permission

For report exports, the service account needs account-level/global access in Play Console:
For financial reports, it also needs:
Google documents this requirement in Download and export monthly reports.

Supported Prefixes

The analytics importer currently supports these report families: Other report families can still be listed and downloaded through the report endpoints when the service account has access.

List Objects

curl
Optional query parameters:

Get Object Metadata

curl
Use this when you need metadata for one report object before downloading or importing it.

Download a Report

curl
Google report files may be CSV, ZIP, or gzip-compressed CSV depending on the report family. The analytics importer handles the supported stats CSV formats automatically.

Import One Report

curl
Use this for manual testing or targeted backfills. For normal analytics sync, use the bulk import endpoint in Analytics.

storage.objects.list denied

This error means the service account can authenticate, but Google Cloud Storage will not allow it to list the Play Console reports bucket. Most common causes:
  1. The service account was not invited in Play Console.
  2. The service account has app-scoped permissions but not global bulk report permission.
  3. The wrong service account email was invited.
  4. The reports bucket belongs to a different Play Console developer account.
  5. Permission propagation has not completed yet.
Fix:
  1. Open Play Console > Users and permissions.
  2. Select the service account user.
  3. Grant global View app information and download bulk reports.
  4. Save changes.
  5. Retry GET /reports/objects?prefix=stats/installs/.
If financial reports are needed, also grant global View financial data.