askill
gplay-reports-download

gplay-reports-downloadSafety 95Repository

Financial and statistics report listing and downloading from Google Play Console via GCS. Use when asked to view, list, or download financial earnings, sales, payouts, or app statistics (installs, ratings, crashes).

24 stars
1.2k downloads
Updated 3/11/2026

Package Files

Loading files...
SKILL.md

Google Play Reports Download

Use this skill when you need to list or download financial reports (earnings, sales, payouts) or statistics reports (installs, ratings, crashes, store performance, subscriptions) from Google Play Console.

How reports work

Google Play Console reports are not available via the REST API. They are stored as CSV/ZIP files in Google Cloud Storage (GCS) buckets:

  • Bucket name: pubsite_prod_rev_<developer_id>
  • Financial reports: earnings/, sales/, payouts/ prefixes
  • Statistics reports: stats/installs/, stats/ratings/, stats/crashes/, stats/store_performance/, stats/subscriptions/ prefixes

The service account must have access to the GCS bucket (this access is granted automatically when the service account is added to Play Console with appropriate permissions).

Prerequisites

  • A service account configured via gplay auth login
  • The GCS developer ID (see below — this is not the same as the Play Console URL ID)
  • For financial reports: VIEW_FINANCIAL_DATA permission (service account must be added to Play Console with "View financial data" access)
  • For stats reports: VIEW_APP_INFORMATION permission (service account must be added to Play Console with "View app information" access)

Finding your developer ID

Important: The developer ID for reports is not the numeric ID in your Play Console URL. The URL ID and the GCS bucket ID are different.

To find the correct developer ID:

  1. Go to Google Play Console > Download reports (in the left sidebar under "Download reports")
  2. Look for the Cloud Storage URI shown on that page, e.g.:
    gs://pubsite_prod_rev_12110000881713004121/
    
  3. The number after pubsite_prod_rev_ is your developer ID: 12110000881713004121

Alternatively, use the Google Cloud Console to find the bucket name associated with your Play Console account.

Common mistake: Using the developer ID from the Play Console URL (https://play.google.com/console/developers/<this_id>/...) will result in a 404 Not Found error because the GCS bucket uses a different internal ID.

Financial reports

List available financial reports

# List all financial reports
gplay reports financial list --developer <id>

# Filter by type
gplay reports financial list --developer <id> --type earnings
gplay reports financial list --developer <id> --type sales
gplay reports financial list --developer <id> --type payouts

# Filter by date range
gplay reports financial list --developer <id> --from 2026-01 --to 2026-06

# Combine filters
gplay reports financial list --developer <id> --type earnings --from 2026-01 --to 2026-03

Download financial reports

# Download earnings for a specific month
gplay reports financial download --developer <id> --from 2026-01 --type earnings

# Download to a specific directory
gplay reports financial download --developer <id> --from 2026-01 --type earnings --dir ./reports

# Download a range of months
gplay reports financial download --developer <id> --from 2026-01 --to 2026-06 --type sales

Financial report types

TypeDescriptionFilename pattern
earningsRevenue and earnings dataearnings/earnings_YYYYMM_<id>.zip
salesSales transaction reportssales/salesreport_YYYYMM.zip
payoutsPayment disbursement reportspayouts/payout_YYYYMM.csv

Statistics reports

List available statistics reports

# List all stats reports for a developer
gplay reports stats list --developer <id>

# Filter by package name
gplay reports stats list --developer <id> --package com.example.app

# Filter by type
gplay reports stats list --developer <id> --type installs

# Filter by date range and package
gplay reports stats list --developer <id> --package com.example.app --type installs --from 2026-01 --to 2026-06

Download statistics reports

# Download installs report
gplay reports stats download --developer <id> --package com.example.app --from 2026-01 --type installs

# Download to a specific directory
gplay reports stats download --developer <id> --package com.example.app --from 2026-01 --type crashes --dir ./reports

# Download a range of months
gplay reports stats download --developer <id> --package com.example.app --from 2026-01 --to 2026-06 --type ratings

Statistics report types

TypeDescriptionFilename pattern
installsInstall/uninstall datastats/installs/installs_<pkg>_YYYYMM_overview.csv
ratingsRating distributionstats/ratings/ratings_<pkg>_YYYYMM_overview.csv
crashesCrash occurrence datastats/crashes/crashes_<pkg>_YYYYMM_overview.csv
store_performanceStore listing performancestats/store_performance/...
subscriptionsSubscription metricsstats/subscriptions/...

Flags reference

Financial commands

FlagRequiredDescription
--developerYesDeveloper ID
--typeNo (list: default all) / Yes (download)Report type: earnings, sales, payouts, all
--fromNo (list) / Yes (download)Start month YYYY-MM
--toNoEnd month YYYY-MM (defaults to --from)
--dirNoOutput directory (default .)
--outputNoOutput format: json, table, markdown
--prettyNoPretty-print JSON output

Stats commands

FlagRequiredDescription
--developerYesDeveloper ID
--packageNo (list) / Yes (download)Package name filter
--typeNo (list: default all) / Yes (download)Stats type: installs, ratings, crashes, store_performance, subscriptions, all
--fromNo (list) / Yes (download)Start month YYYY-MM
--toNoEnd month YYYY-MM (defaults to --from)
--dirNoOutput directory (default .)
--outputNoOutput format: json, table, markdown
--prettyNoPretty-print JSON output

Output format

List output

{
  "developer": "12345",
  "bucket": "pubsite_prod_rev_12345",
  "reports": [
    {"name": "earnings/earnings_202601_12345.zip", "size": 1234, "updated": "2026-02-01T00:00:00Z"}
  ]
}

Download output

{
  "developer": "12345",
  "type": "earnings",
  "from": "2026-01",
  "to": "2026-01",
  "dir": "./reports",
  "files": [
    {"name": "earnings/earnings_202601_12345.zip", "path": "reports/earnings_202601_12345.zip", "size": 1234}
  ]
}

Common workflows

Monthly financial review

# List last month's earnings
gplay reports financial list --developer <id> --type earnings --from 2026-01 --output table

# Download all financial reports for Q1
gplay reports financial download --developer <id> --from 2026-01 --to 2026-03 --type earnings --dir ./q1-reports

App performance monitoring

# Check install trends
gplay reports stats list --developer <id> --package com.example.app --type installs --from 2026-01

# Download crash data for analysis
gplay reports stats download --developer <id> --package com.example.app --from 2026-01 --type crashes --dir ./crash-data

CI/CD automated report collection

# Download all report types for archival
for type in earnings sales payouts; do
  gplay reports financial download --developer $DEV_ID --from $(date -d "last month" +%Y-%m) --type $type --dir ./monthly-reports
done

Troubleshooting

ErrorCauseFix
authentication failedService account not configuredRun gplay auth login --service-account <path>
403 ForbiddenNo GCS bucket accessEnsure service account is invited in Play Console with appropriate permissions
404 Not FoundWrong developer ID or no reportsUse the GCS developer ID from Play Console > Download reports > Cloud Storage URI (not the URL developer ID)
Empty reports listNo reports for the date rangeCheck --from/--to range; reports may not exist for all months

Install

Download ZIP
Requires askill CLI v1.0+

AI Quality Score

88/100Analyzed 2/23/2026

Well-structured skill with comprehensive documentation covering financial and statistics report downloading from Google Play Console. Clear when-to-use section, detailed prerequisites, multiple command examples, flags reference tables, workflow examples, and troubleshooting. Slightly specific to gplay CLI but highly actionable and complete.

95
90
75
95
90

Metadata

Licenseunknown
Version-
Updated3/11/2026
Publishertamtom

Tags

apici-cdobservabilitysecurity