Loading...
Loading...
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).
npx skill4agent add tamtom/gplay-cli-skills gplay-reports-downloadpubsite_prod_rev_<developer_id>earnings/sales/payouts/stats/installs/stats/ratings/stats/crashes/stats/store_performance/stats/subscriptions/gplay auth loginVIEW_FINANCIAL_DATAVIEW_APP_INFORMATIONhttps://play.google.com/console/developers/<developer_id>/...# 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 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| Type | Description | Filename pattern |
|---|---|---|
| Revenue and earnings data | |
| Sales transaction reports | |
| Payment disbursement 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 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| Type | Description | Filename pattern |
|---|---|---|
| Install/uninstall data | |
| Rating distribution | |
| Crash occurrence data | |
| Store listing performance | |
| Subscription metrics | |
| Flag | Required | Description |
|---|---|---|
| Yes | Developer ID |
| No (list: default | Report type: |
| No (list) / Yes (download) | Start month |
| No | End month |
| No | Output directory (default |
| No | Output format: |
| No | Pretty-print JSON output |
| Flag | Required | Description |
|---|---|---|
| Yes | Developer ID |
| No (list) / Yes (download) | Package name filter |
| No (list: default | Stats type: |
| No (list) / Yes (download) | Start month |
| No | End month |
| No | Output directory (default |
| No | Output format: |
| No | Pretty-print JSON output |
{
"developer": "12345",
"bucket": "pubsite_prod_rev_12345",
"reports": [
{"name": "earnings/earnings_202601_12345.zip", "size": 1234, "updated": "2026-02-01T00:00:00Z"}
]
}{
"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}
]
}# 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# 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# 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| Error | Cause | Fix |
|---|---|---|
| Service account not configured | Run |
| No GCS bucket access | Ensure service account is invited in Play Console with appropriate permissions |
| Wrong developer ID or no reports | Verify developer ID from Play Console URL |
| Empty reports list | No reports for the date range | Check |