How to build Braze dashboards in Metabase
Braze is a customer engagement platform for cross-channel lifecycle messaging — email, push, in-app, SMS, and WhatsApp — at enterprise scale. Metabase is where you turn that marketing data into shared, trustworthy dashboards. This guide covers two complementary paths: a lightweight API + CLI route that pulls scoped exports with the Braze REST API (Export) and loads a CSV into Metabase with the Metabase CLI, and a durable pipeline route that syncs Braze daily stats into a database so you can build dashboards anyone can read.
How do you connect Braze to Metabase?
Most teams combine both routes: use API exports and CLI uploads for a fast first pass, then move recurring marketing reporting to a warehouse-backed model.
Live data in, quick analysis out
Pair the Braze REST API (Export) with the Metabase CLI. Script a scoped export to CSV, then load it into Metabase as a ready-to-query table and model.
- Quick lookups such as "show me campaign and canvas engagement"
- Loading a Braze export into Metabase in seconds
- Spot-checks and one-off analyses without a warehouse
- Great for exploration, not governed recurring reporting
- Use read-only API credentials scoped to reporting endpoints
- CSV uploads are snapshots — refresh or move to the pipeline for history
Durable dashboards with history
Sync Braze daily stats and entities into a database or warehouse with a connector, custom pipeline, or API, then point Metabase at it.
- Braze reporting that marketing leaders depend on
- Joining Braze data with CRM, revenue, or product data
- Long-run trends for campaign and canvas engagement and deliverability by channel
- You own the refresh schedule and the rollup grain
- Sync daily aggregates and entities — not raw event streams
- Metric definitions must be consistent across channels and teams
What can you analyze from Braze data in Metabase?
- Campaign and Canvas engagement — built from campaign daily stats and the related campaigns, canvases, segments data your sync exposes.
- Deliverability by channel — built from campaign daily stats and the related campaigns, canvases, segments data your sync exposes.
- Canvas journey step drop-off — built from campaign daily stats and the related campaigns, canvases, segments data your sync exposes.
- Audience and segment growth — built from campaign daily stats and the related campaigns, canvases, segments data your sync exposes.
- Revenue attributed to messaging — built from campaign daily stats and the related campaigns, canvases, segments data your sync exposes.
Which Braze dashboards should you build in Metabase?
Campaign engagement
How each send performs against the list it hit.
- Opens, clicks, and unsubscribes by campaign (table)
- Click-through rate trend (line)
- Engagement by audience segment (bar)
- Revenue per campaign where tracked (bar)
Deliverability health
Whether mail is landing in inboxes at all.
- Delivery and bounce rates by week (combo)
- Spam complaints per 10k sends (line)
- Bounce reasons breakdown (bar)
- Suppression list growth (line)
Lifecycle automation
Whether journeys move people forward.
- Automation entries and completions (combo)
- Drop-off by automation step (funnel)
- Conversions attributed to automations (bar)
- Time in automation distribution (bar)
List and revenue health
The long-run value of the email program.
- Net list growth by month (combo)
- Engaged subscriber share (line)
- Email-attributed revenue by month (bar)
- Unsubscribe rate trend (line)
How do you use the Braze REST API (Export) with the Metabase CLI?
Pair the Braze REST API (Export) with the Metabase CLI for fast, hands-on analysis. A short export script covers scoped lookups and summarized exports; the Metabase CLI's upload command loads CSV data into Metabase and creates a ready-to-query table and model.
Example workflow
- Script an export of recent campaign daily stats with sends, opens, clicks, and bounces.
- Export the result as CSV, keeping stable IDs, channels, campaigns, and dates.
- Run
mb upload csvto load it into Metabase as a table and model, then build questions and dashboards on top.
Be honest about the limits
- Scripted API exports are excellent for exploration, not scheduled reporting.
- A CSV upload is a snapshot; refresh it with
mb upload replaceor move to the pipeline for real history. - Per-campaign send and engagement counts with send dates are required for engagement trends.
mb upload csvneeds an uploads database configured under Admin → Settings → Uploads.
How do you set up Braze API access and the Metabase CLI?
Braze REST API (Export)API
- Transport
- REST API — scripted export to CSV
- Auth
- REST API key scoped to export endpoints (your instance's REST URL)
- MCP status
- Local beta is unsupported and sunsetting; a Braze-hosted remote OAuth server is slated for Early Access later this summer
- Best for
- Scoped exports and one-off analyses
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)
# Pull 30 days of daily campaign stats (use your instance's
# REST endpoint, e.g. rest.iad-01.braze.com)
curl "https://rest.iad-01.braze.com/campaigns/data_series?campaign_id=$CAMPAIGN_ID&length=30" \
-H "Authorization: Bearer $BRAZE_API_KEY" > braze-campaign.json
# Flatten the JSON series to CSV (jq, or a few lines of Python),
# then load it into Metabase
mb upload csv --file braze-campaign-daily.csv --collection root# 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 campaign-daily-stats export — creates a table AND a model
mb upload csv --file braze-campaign-daily-stats.csv --collection root
# Refresh that same table later from a new export
mb upload replace <table-id> --file braze-campaign-daily-stats.csvCan you generate a Braze dashboard with AI?
Yes. Use the prompt below with any assistant that can write and run scripts against the Braze REST API (Export) and the Metabase CLI. It works end to end: if Braze tables already exist in Metabase it analyzes those; otherwise it pulls scoped, summarized data from the API, loads it with mb upload csv, then builds the dashboard and caveats any metric that needs missing history.
Create a polished Metabase dashboard for Braze email marketing analytics.
Work end to end: get the data into Metabase if it isn't there yet, then build.
Goal: Help marketing and growth leaders understand campaign engagement, deliverability, automation performance, and list health from Braze data.
Step 1 — Find or load the data:
- First, check what already exists in Metabase (search for braze tables and
models). If durable Braze data is already present — synced from a warehouse
or uploaded earlier — use it and skip to Step 2.
- If nothing is there, pull a scoped, summarized export from the Braze REST API (Export) (write and run a short export script):
campaign daily stats, plus campaigns, canvases, segments.
Prefer daily aggregates over raw events. 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, channels,
campaigns, dates, and whether daily history exists before creating trend or
pacing cards.
Important:
- Build on whatever data is present; don't claim Metabase connects natively to
Braze — it reads a database or CLI-uploaded tables.
- Never try to load raw event or click streams into Metabase; use daily
aggregates, campaign-grain stats, and entity tables.
- Only compute rates (CTR, conversion rate, ROAS, CAC) when both numerator and
denominator exist — and state the attribution model when reporting conversions.
- Exclude test campaigns and internal traffic from headline cards, and keep
currency consistent when spend spans accounts.
- 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.
Dashboard title: Braze Email Marketing Overview
Sections:
1. Executive summary: Sends last 30 days; Click-through rate; Bounce rate;
Unsubscribe rate; Net list growth.
2. Campaigns: Opens, clicks, and unsubscribes by campaign; CTR trend.
3. Deliverability: Delivery and bounce rates by week; spam complaints.
4. Automations: Entries, completions, and drop-off by workflow.
5. List health: Growth, engaged share, and email-attributed revenue.
Filters: Date range, Channel, Campaign, Country, Device, Segment.
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 Braze data into a database or warehouse?
For dashboards that need history and reliability, land Braze daily stats and entities in a database first, then connect Metabase to that database.
Connector options
- Managed ETL — use a connector when one covers the objects you need.
- Custom pipeline — use the Braze REST API (Export) for control over grain, fields, and refresh cadence.
- MCP + CSV — use this for quick exploration and one-off slices.
Braze's native warehouse routes are the strong option: Currents streams events to S3 for ELT into Snowflake, and Snowflake Data Sharing exposes your data as a zero-copy inbound share. Fivetran's Braze connector covers the REST objects; the Airbyte source is community-maintained.
Notes
- Decide the rollup grain first (daily per campaign/channel is the workhorse) — it drives warehouse cost and every trend card.
- Land raw entity tables first, then build clean Metabase models on top.
- Normalize campaign, list, send date, sends, opens, clicks, bounces, and unsubscribes fields.
How should you model Braze data in Metabase?
Core tables
| Table | Grain | Key columns |
|---|---|---|
braze_campaign_stats_daily | one row per campaign per channel per day | campaign_id, channel, stat_date, sent, delivered, opens, clicks, conversions, revenue |
braze_canvas_stats_daily | one row per canvas step per day | canvas_id, step_id, stat_date, entries, revenue, conversions, exits |
braze_message_events | one row per Currents event | event_type, occurred_at, campaign_id, canvas_id, user_id, channel, dispatch_id |
Modeling advice
- Build a clean
email_campaign_statsmodel with common columns across tools, so multi-channel dashboards don't fork definitions. - Separate entity tables (campaigns, audiences, pages) from daily time-series rollups.
- Exclude test campaigns and internal traffic from headline metrics; keep channel and campaign as explicit columns.
- Use stable IDs for campaign, channel, and user joins; display names change.
Which Braze metrics should you track in Metabase?
| Metric | Definition | Notes |
|---|---|---|
| Click-through rate | Unique clicks divided by delivered emails per campaign. | The engagement metric to trust after Apple MPP. |
| Email bounce rate | Bounced sends divided by total sends, hard vs. soft. | A rising trend means list hygiene work, now. |
| Landing-page conversion rate | Conversions divided by sessions on the pages emails link to. | Join email clicks to web sessions via UTM parameters. |
| List growth rate | Net new subscribers divided by the list size at period start. | Report net growth — imports and purges distort gross adds. |
| Customer lifetime value | Revenue expected from a customer relationship over time. | Lifecycle email earns its keep here, not in opens. |
What SQL powers Braze dashboards in Metabase?
These assume a cleaned analytical model in a warehouse (PostgreSQL dialect). Adjust table and column names to match your pipeline.
CTR, bounce, and unsubscribe rates per send.
SELECT
campaign_name,
send_date,
sends,
ROUND(100.0 * unique_clicks / NULLIF(delivered, 0), 2) AS ctr_pct,
ROUND(100.0 * bounces / NULLIF(sends, 0), 2) AS bounce_rate_pct,
ROUND(100.0 * unsubscribes / NULLIF(delivered, 0), 3) AS unsub_rate_pct
FROM email_campaign_stats
WHERE send_date >= CURRENT_DATE - INTERVAL '90 days'
ORDER BY send_date DESC;Delivery, bounce, and complaint rates over time.
SELECT
date_trunc('week', send_date) AS week,
SUM(sends) AS sends,
ROUND(100.0 * SUM(delivered) / NULLIF(SUM(sends), 0), 2)
AS delivery_rate_pct,
ROUND(100.0 * SUM(bounces) / NULLIF(SUM(sends), 0), 2) AS bounce_rate_pct,
ROUND(10000.0 * SUM(spam_complaints) / NULLIF(SUM(delivered), 0), 2)
AS complaints_per_10k
FROM email_campaign_stats
GROUP BY 1
ORDER BY 1;Subscribes vs. unsubscribes from membership changes.
SELECT
date_trunc('month', changed_at) AS month,
COUNT(*) FILTER (WHERE change_type = 'subscribe') AS subscribes,
COUNT(*) FILTER (WHERE change_type = 'unsubscribe') AS unsubscribes,
COUNT(*) FILTER (WHERE change_type = 'subscribe')
- COUNT(*) FILTER (WHERE change_type = 'unsubscribe') AS net_growth
FROM list_membership_changes
GROUP BY 1
ORDER BY 1;What are common mistakes when analyzing Braze in Metabase?
Related
Related analytics
Related dashboards
Related integrations
FAQ
Does Metabase connect natively to Braze?
Should Metabase replace Braze?
Why are open rates unreliable?
How do I keep email events past the retention window?
Does Braze have an MCP server?
uvx braze-mcp-server) exists, but Braze's own docs mark it unsupported and sunsetting, and the Braze-hosted remote OAuth server is announced for Early Access "this summer" (as of July 2026) — limited to endpoints that don't return PII. Until it ships, the REST export endpoints on this page cover exploratory pulls; swapping in the remote server later changes only the export step.