Measuring Customer Engagement with Braze and Snowflake
The Braze Engagement Benchmarks give Snowflake users access to industry-by-industry data on message engagement, app retention, user acquisition, and purchasing behavior, updated daily. All data in Benchmarks are anonymized and aggregated. The data are pulled from their customer base of over 1,000 global brands across 14 major industries and encompass the past year from the current date. Find here how to query them.
Let’s say you have a health and fitness app, and you’re wondering: What’s the best day to send notifications to your users? It’s Monday:
As the chart shows, Monday is when 7% of users of health apps open their notifications.
Now, what about gaming apps? The best day to send notifications is Sunday:
But that’s only on iOS. Android users are most likely to open gaming related notifications on Wednesdays:
This data comes out of hundreds of companies that use Braze as their customer engagement platform, and you can use the data as a benchmark for your own applications. You can find the data in Braze’s public dashboard powered by Snowflake, or even better, this data is ready for you to query on the Snowflake Data Marketplace.
This is how I learned that people finally started reengaging with travel related apps in March — after a year with not much travel:
Or that in retail and e-commerce, the first purchase happens in 26 days, while the second one takes 43:
You don’t need to be a Braze customer to access all this data. It’s all available and updated for free in the Data Cloud. Just start writing your SQL queries, like this one to check the purchase propensity by industry:
// Pull percent of buyers and repeat buyers for each industry included in Benchmarks
SELECT
industry,
COALESCE(SUM(pct_first_time_buyers), 0) AS pct_first_time_buyers,
COALESCE(SUM(pct_repeat_buyers), 0) AS pct_repeat_buyers
FROM BENCHMARKS_AVG_TIME_TO_PURCHASE
WHERE industry!= 'All Industries'
GROUP BY 1
ORDER BY 2 DESC
;
And if you are a Braze customer, then you can also get your own data from Braze shared automatically with your Snowflake account.
Are you ready to query? You will find the Braze benchmarks for 14 different industry segments:
If you are working to reengage customers, this is the data you want.
Learn more
- Check out our podcast with Braze to see why they trust Snowflake to handle their data from billions of monthly active users
- Read “How Braze Built Support for Snowflake Data Sharing”.
Want more?
- Try this out with a Snowflake free trial account — you only need an email address to get started.
- Find plenty more datasets in the Snowflake Data Marketplace.
I’m Felipe Hoffa, Data Cloud Advocate for Snowflake. Thanks for joining me on this adventure. You can follow me on Twitter and LinkedIn, and check reddit.com/r/snowflake for the most interesting Snowflake news.