Google Play Console × Metabase

How to build Google Play analytics dashboards in Metabase

Google Play Console is Google's developer console for Android — releases, store listings, pricing, and the statistics and financial reports that record installs, store conversion, ratings, crashes, and earnings. Metabase is where you turn that data into shared, trustworthy dashboards. This guide covers two complementary paths: a lightweight API + CLI route that pulls live data via the Play Developer Reporting API (vitals) and loads a CSV into Metabase with the Metabase CLI, and a durable pipeline route that lands Google Play Console data in a database so you can build dashboards anyone can read.

Heads up: Metabase connects to databases and warehouses — it does not ship a native Google Play Console connector. Play reports are aggregated CSVs written per month per dimension, so the pipeline job is unglamorous but simple: copy the current month's files on a schedule, dedupe on date plus dimension, and append. Once that runs, the dashboards are ordinary SQL.

How do you connect Google Play Console to Metabase?

Most teams combine both routes: quick answers through API exports and CLI uploads first, then recurring reporting on a warehouse-backed model.

Play splits analytics across two unrelated systems, and knowing which is which saves a wasted afternoon. The Play Developer Reporting API covers vitals only — crash rate, ANR rate, slow starts — with no installs and no revenue. Everything you'd put on a growth or revenue dashboard comes from the monthly CSV reports in a Cloud Storage bucket. There is no single API that returns Play revenue.

1 · API + CLI route (AI-assisted)

Live answers in, quick analysis out

Script a scoped export against the Play Developer Reporting API (vitals), write the result to CSV, then load it into Metabase as a ready-to-query table and model.

Best for
  • Quick questions such as "show me store listing visitors to acquisitions conversion"
  • Loading Google Play Console exports into Metabase in seconds
  • Spot-checks and one-off investigations without pipeline work
Trade-offs
  • Great for exploration, not month-end reporting anyone signs off on
  • Use read-only credentials or scoped tokens wherever supported
  • CSV uploads are snapshots — refresh or move to the pipeline for history
2 · Pipeline route (warehouse-backed)

Durable dashboards with history

Land Google Play Console data in a database or warehouse — via connector, scheduled API pulls, or a direct database connection — then point Metabase at it.

Best for
  • Google Play Console dashboards the whole team reads from the same definitions
  • Joining this data with orders, customers, and revenue from the rest of the stack
  • Long-run trends for store listing visitors to acquisitions conversion and installs and uninstalls by country and device
Trade-offs
  • You own the refresh schedule and the rollup grain
  • Model gross, fee, and net amounts once, in the warehouse layer
  • Late-arriving records restate recent periods — plan for it

What can you analyze from Google Play Console data in Metabase?

Each of these is built from daily store report rows joined to the related store listing visitors and acquisitions, installs and uninstalls by dimension, earnings and refunds data your export exposes:

  • Store listing visitors to acquisitions conversion
  • Installs and uninstalls by country and device
  • Earnings after Google's commission
  • Subscription performance by product
  • Crash and ANR rate against install growth

Which Google Play dashboards should you build in Metabase?

For: Growth, product

Acquisition funnel

Impressions through to installs.

  • Impressions → product page views → installs (funnel)
  • Store conversion rate (number + trend)
  • Installs by country, top 20 (bar)
  • First-time installs vs. redownloads (stacked bar)
For: Finance, leadership

Proceeds

Revenue after the store takes its cut.

  • Proceeds by month, net of commission (line)
  • Effective commission rate (line)
  • Revenue by product or SKU (bar)
  • Refunds as a share of sales (line)
For: Subscription owners

Subscriptions

Starts, renewals, and cancellations.

  • New subscriptions vs. cancellations (stacked bar)
  • Renewal rate by cohort (line)
  • Trial-to-paid conversion (number + trend)
  • Active subscriptions by plan (bar)
For: Engineering, product

Quality vs. growth

Whether stability is tracking with scale.

  • Crash rate against install trend (combo)
  • Average rating over time (line)
  • Rating volume by version (bar)
  • Uninstall or retention signal where available (line)

How do you use the Play Developer Reporting API (vitals) with the Metabase CLI?

Pair the Play Developer Reporting API (vitals) with the Metabase CLI for fast, hands-on analysis. A short scripted export covers the pulls an MCP server would otherwise make; the Metabase CLI's upload command loads CSV data into Metabase and creates a ready-to-query table and model.

Example workflow

  • Ask the API for the last 90 days of daily store report rows, one row per day per country with impressions, page views, installs, and proceeds.
  • Export the result as CSV, keeping stable IDs, dates, currency codes, and the fee breakdown intact.
  • Run mb upload csv to load it into Metabase as a table and model, then build questions and dashboards on top.

Be honest about the limits

  • Scripted API pulls are excellent for exploration, not scheduled reporting.
  • A CSV upload is a snapshot; refresh it with mb upload replace or move to the pipeline for real history.
  • Store analytics lag by days and are only retained for a bounded window, so start accumulating daily rows before you need the history.
  • mb upload csv needs an uploads database configured under Admin → Settings → Uploads.

How do you set up the Google Play Console API and the Metabase CLI?

Play Developer Reporting API (vitals)no vendor MCP

Transport
Google Cloud Storage bucket (gcloud storage / gsutil)
Auth
Google Cloud service account with Play Console permissions
Best for
Scheduled bulk report downloads from Cloud Storage

Metabase CLIofficial

Install
npm install -g @metabase/cli
Auth
mb auth login
Load data
mb upload csv --file data.csv
Requires
An uploads database (Admin → Settings → Uploads)
ShellExample Google Play Console API export
# Play's statistics and financial reports are monthly CSVs in a
# Cloud Storage bucket. Find the URI in Play Console > Download reports.
BUCKET="gs://pubsite_prod_rev_${DEVELOPER_ID}"
PKG="com.example.app"
MONTH=$(date -u +%Y%m)

# Installs (overview + per-dimension files land side by side)
gcloud storage cp \
  "${BUCKET}/stats/installs/installs_${PKG}_${MONTH}_country.csv" .

# Store listing conversion (visitors, acquisitions, conversion rate)
gcloud storage cp \
  "${BUCKET}/stats/store_performance/store_performance_${PKG}_${MONTH}_country.csv" .

# Earnings (zipped; includes refunds as negative rows)
gcloud storage cp "${BUCKET}/earnings/earnings_${MONTH}.zip" . \
  && unzip -o "earnings_${MONTH}.zip"

# Then load into Metabase:
#   mb upload csv --file installs_${PKG}_${MONTH}_country.csv

Google ships no official MCP server for Play (verified July 2026). The community servers that exist wrap the Play Developer API — releases, listings, reviews, purchase status — and none of them expose the bulk statistics or earnings CSVs, which is where installs, conversion, and revenue actually live. So an MCP route wouldn't get you this data even if you trusted one. The Cloud Storage export above is the real path.

TerminalLoad a Google Play Console CSV with the Metabase CLI
# Install the Metabase CLI
npm install -g @metabase/cli

# Log in (opens your browser; requires Metabase v62+)
mb auth login --url https://your-metabase.example.com

# Load a daily-store-report-rows export — creates a table AND a model
mb upload csv --file google-play-daily-store-report-rows.csv --collection root

# Refresh that same table later from a new export
mb upload replace <table-id> --file google-play-daily-store-report-rows.csv

Can you generate a Google Play Console dashboard with AI?

Yes. Use the prompt below with any assistant that can run shell commands (for the API export) and the Metabase CLI. It works end to end: if Google Play Console tables already exist in Metabase it analyzes those; otherwise it pulls scoped, summarized data, loads it with mb upload csv, then builds the dashboard and caveats any metric that needs missing history.

Prompt for creating a Google Play Console App Store Overview dashboard
Create a polished Metabase dashboard for Google Play Console app store analytics.
Work end to end: get the data into Metabase if it isn't there yet, then build.

Goal: Help the team understand the impressions-to-installs funnel, store conversion rate, proceeds after commission, and subscription movement from Google Play Console data.

Step 1 — Find or load the data:
- First, check what already exists in Metabase (search for google-play tables and
  models). If durable Google Play Console data is already present — a warehouse sync, a
  direct database connection, or an earlier upload — use it and skip to Step 2.
- If nothing is there, pull a scoped, summarized export by scripting the Play Developer Reporting API (vitals):
  daily store report rows, plus store listing visitors and acquisitions, installs and uninstalls by dimension, earnings and refunds.
  Write each result to a CSV, then load it with the Metabase CLI — run
  "mb upload csv --file <export>.csv" so each upload creates a table and a
  ready-to-query model. Use "mb upload replace <table-id> --file <export>.csv"
  to refresh an existing table instead of creating duplicates.

Step 2 — Inspect before querying:
Do not assume exact table or column names. Inspect available fields, products,
locations or countries, currencies, and date ranges before creating trend cards.

Important:
- Build on whatever data is present; don't claim Metabase connects natively to
  Google Play Console — it reads a database or CLI-uploaded tables.
- Separate gross amounts, platform and processing fees, taxes, and refunds into
  distinct columns; never let one card silently mix gross and net.
- A single CSV is a point-in-time snapshot: only build trend cards if there is
  a usable date column or multiple periods have been uploaded.
- Store analytics lag by days and are only retained for a bounded window, so start accumulating daily rows before you need the history.
- If a metric can't be computed from the data present, say so on the card
  instead of approximating it.

Dashboard title: Google Play Console App Store Overview

Sections:
1. Executive summary: Installs; Store conversion rate; Proceeds;
   Effective commission rate; Crash rate.
2. Funnel: Impressions → page views → installs; conversion by country.
3. Proceeds: Proceeds by month; commission rate; revenue by product; refunds.
4. Subscriptions: New vs. cancelled; renewal rate by cohort; trial conversion.
5. Quality: Crash rate vs. installs; rating trend; ratings by version.

Filters: Date range, App, Country, Traffic source, Device, App version.

Output: Build the dashboard if you have permission; otherwise provide the exact
questions, SQL, model definitions, and layout. Include caveats for any metric
that cannot be calculated from the available data.

How do you sync Google Play Console data into a database or warehouse?

For dashboards that need history and reliability, land Google Play Console data in a database first, then connect Metabase to that database.

Connector options

  • Managed connector — use Airbyte, Fivetran, or dlt when one genuinely covers the objects you need.
  • Custom pipeline — use the Play Developer Reporting API (vitals) for control over grain, fields, and refresh cadence.
  • API + CSV — use this for quick exploration and one-off slices.

Fivetran's official Google Play connector reads the Cloud Storage bucket for you and is the least-effort durable path, with <code>fivetran/dbt_google_play</code> modeling the reports and <code>fivetran/dbt_app_reporting</code> unioning Play with the App Store into cross-store models. Airbyte has no official Play source. BigQuery Data Transfer Service also offers a Play connector if your warehouse is BigQuery. Rolling your own means a scheduled <code>gcloud storage</code> copy plus a loader — and note that <code>gsutil</code> is deprecated in favor of <code>gcloud storage</code>, though most older tutorials still use it.

Notes

  • Decide the grain first (one row per day per package per dimension value) — it drives every trend card.
  • Land raw tables first, then build clean Metabase models on top.
  • Normalize report-date, store, app-id, country, impressions, page-views, installs, and proceeds fields.

How should you model Google Play Console data in Metabase?

Core tables

TableGrainKey columns
app_store_daily_metricsone row per day per package per country (or other dimension)report_date, app_id, store, country, store_listing_visitors, store_listing_acquisitions, daily_device_installs, daily_device_uninstalls, daily_user_installs, proceeds_usd
app_store_subscriptionsone row per day per package per subscription productreport_date, app_id, product_id, base_plan_id, active_subscriptions, new_subscriptions, cancellations, proceeds_usd
app_store_qualityone row per day per package per versionreport_date, app_id, app_version, daily_crashes, daily_anrs, daily_average_rating

Modeling advice

  • Build a clean app_store_daily_metrics model with the same column names you use for sibling tools, so cross-tool dashboards don't fork definitions.
  • Keep gross amount, platform fee, processing fee, tax, and net amount as separate, labeled columns — never let one card silently mix them.
  • Pick one install definition and document it. Play reports daily_device_installs, daily_user_installs, install_events, active_device_installs and more — they mean different things, and choosing the wrong one is the classic reason Play and Apple numbers "don't match".
  • Earnings are reported in merchant currency with a currency_conversion_rate column; normalize to one reporting currency in the model rather than per card.
  • Refunds arrive as negative earnings rows carrying a refund_type — keep them, and report gross and net separately instead of silently netting.
  • Per-dimension files are separate: there's a country file and a device file, but no country-by-device file. Don't promise a cross-tab the source can't produce.
  • Store amounts in minor units or with an explicit currency column, and convert once in the model layer rather than per card.

Which Google Play metrics should you track in Metabase?

MetricDefinitionNotes
App store conversion rateStore listing acquisitions over store listing visitors.Play names it differently than Apple — define it once.
Platform fee rateGoogle's service fee as a share of gross sales.15% and 30% tiers blend; derive it from the data.
Conversion rateThe generic funnel-step pattern this specializes.Aggregated data — no user-level funnel is possible.
Churn rateSubscription cancellations over active subscriptions.Cross-store churn is easier through RevenueCat.

What SQL powers Google Play dashboards in Metabase?

These assume a cleaned analytical model in a warehouse (PostgreSQL dialect). Adjust table and column names to match your pipeline.

Store listing conversion by countryPostgreSQL

Play's own conversion definition — acquisitions over visitors.

SELECT
  date_trunc('month', report_date)::date AS month,
  country,
  SUM(store_listing_visitors) AS visitors,
  SUM(store_listing_acquisitions) AS acquisitions,
  ROUND(
    100.0 * SUM(store_listing_acquisitions)
    / NULLIF(SUM(store_listing_visitors), 0), 2
  ) AS store_conversion_pct
FROM app_store_daily_metrics
WHERE store = 'google_play'
GROUP BY month, country
HAVING SUM(store_listing_visitors) > 500
ORDER BY month DESC, acquisitions DESC;
Net install growth: installs against uninstallsPostgreSQL

The line that acquisition dashboards usually leave off.

SELECT
  date_trunc('week', report_date)::date AS week,
  SUM(daily_device_installs) AS installs,
  SUM(daily_device_uninstalls) AS uninstalls,
  SUM(daily_device_installs) - SUM(daily_device_uninstalls) AS net_installs,
  ROUND(
    100.0 * SUM(daily_device_uninstalls)
    / NULLIF(SUM(daily_device_installs), 0), 1
  ) AS uninstall_ratio_pct
FROM app_store_daily_metrics
WHERE store = 'google_play'
  AND report_date >= CURRENT_DATE - INTERVAL '180 days'
GROUP BY week
ORDER BY week DESC;
Cross-store install and proceeds comparisonPostgreSQL

One model, both stores — with the definition caveat stated in the card.

SELECT
  date_trunc('month', report_date)::date AS month,
  store,
  SUM(COALESCE(first_time_downloads, daily_device_installs)) AS installs,
  ROUND(SUM(proceeds_usd), 2) AS proceeds,
  ROUND(
    SUM(proceeds_usd)
    / NULLIF(SUM(COALESCE(first_time_downloads,
                          daily_device_installs)), 0), 3
  ) AS proceeds_per_install
FROM app_store_daily_metrics
GROUP BY month, store
ORDER BY month DESC, store;

What are common mistakes when analyzing Google Play Console in Metabase?

Expecting the Reporting API to return installs or revenue.→ It won't — the Play Developer Reporting API exposes vitals metric sets only (crash rate, ANR rate, slow starts). Growth and revenue live in the monthly CSVs in your Cloud Storage bucket. Two systems, no overlap.
Loading the current month's file once and moving on.→ Play appends daily rows into a single monthly file, so the current month's CSV changes every day. Re-read it each run and dedupe on date plus dimension, or the month ends up permanently truncated.
Comparing Play installs to Apple downloads one-to-one.→ Apple counts first-time downloads per account; Play's device and user install counts measure different things again. Choose the closest pair, name the columns explicitly, and put the caveat on the card.
Building dashboards from live lookups only.→ Scripted exports are for exploration; durable dashboards need a database-backed model with history.

Related analytics

Related dashboards

Related integrations

FAQ

Does Metabase connect natively to Google Play Console?
No. Metabase reads databases and warehouses. Land Google Play Console data in a database first — via connector, API pipeline, or a direct database connection where the product allows one — or upload a CSV with the Metabase CLI, then build Metabase models and dashboards on top.
Should Metabase replace Google Play Console's built-in reports?
No — they answer different questions. Google Play Console's reporting is built for the operating surface it owns, and it's the fastest way to check that surface. Metabase is where you join Google Play Console data with everything else — orders, customers, ad spend, support tickets, bank deposits — and define metrics once so every dashboard downstream agrees.
Is there an official Google Play MCP server?
No (verified July 2026). Community servers exist and wrap the Play Developer API — releases, listings, reviews, purchase status — but none of them expose the bulk statistics or earnings reports, so they can't answer growth or revenue questions regardless of how much you trust them. The Cloud Storage export is the route that actually reaches the data.
Where does Play revenue data actually come from?
The earnings/ and sales/ report archives in your Cloud Storage bucket, published by the 5th of the following month. They carry transaction-level rows with product IDs, buyer country, merchant currency, and a conversion rate, plus refunds as negative rows. Statistics reports (installs, conversion, ratings) run about three to seven days behind and live under stats/.
What's the fastest way to get both stores on one dashboard?
Fivetran connectors for both, plus the fivetran/dbt_app_reporting package, which unions Play and App Store data into shared models — that's the least modeling work for a cross-store view. If you only care about subscription revenue across both, RevenueCat normalizes it upstream and gives you one subscriber model instead of two report formats.