Skip to content
Sign in
An image of the Stripe logo
Create account
Sign in
Home
Payments
Finance automation
Banking as a service
Developer tools
No-code
All products
Home
Payments
Finance automation
Home
Payments
Finance automation
Banking as a service
Developer tools
Overview
Building your integration
Developer tools
SDKs
API
Security
Sample projects
Videos
Stripe Apps
    Overview
    Get started
    Create an app
    How Stripe Apps work
    Sample apps
    Development
    Store secrets
    Authorization flows
    Server-side logic
    App settings page
    Build a UI
    Onboarding
    UI design
    Design your app
    Style your app
    Design patterns
    Components
    Share and distribute
    Distribution options
    Upload your app
    Versions and releases
    Test your app
    Publish your app
    Promote your app
    Add deep links
    Post-install actions
    App analytics
    Reference
    App manifest
    CLI
    Extension SDK
    Permissions
    Viewports
    Extensions
    Migrate to Stripe Apps
    Building extensions
Stripe Connectors
Partners
HomeDeveloper tools

App analytics

Access analytics to see how your app performs.

App analytics enables you to understand better how your apps are used and how your marketplace listings perform. You can export data, such as the number of installs and listing views, for your public app. This data is available in Dashboard or the Stripe API.

App analytics export modal

Get started

  1. From the Developer’s Dashboard > Apps, select your app.
  2. Click the Users tab, then click Export app analytics.
  3. Choose the report to export and select your preferred date range.

Available reports

The following reports are available to export as a CSV.

NameDescriptionReport type
App installsInstalls per dayapps.install_events.1
App uninstallsUninstalls per dayapps.uninstall_events.1
Cumulative net installsInstalls to date (installs - uninstalls)apps.total_installs.1
Listing page viewsTotal daily app listing viewsapps.listing_views.1
Unique listing page viewsTotal unique merchants who have visited your app listing pageapps.unique_listing_views.1
MoM install conversion rate# of new installs in the last 30 days ÷ # of leads in the last 30 days x 100apps.lead_conversion_rate.1
MoM listing page views growth rate(# of leads this month - # of leads last month) ÷ # of leads last month x 100apps.lead_velocity_rate.1
MoM install churn rate# of uninstalls in the last 30 days ÷ # of active installs 30 days ago x 100apps.churn_rate.1

Data freshness and definitions

The analytics data lags 24 hours before it’s available in reports. If you’re looking for real-time metrics, you can build your own custom analytics using our platform primitives.

We define “leads” as logged-in merchants who visit the marketplace.

Accessing using the Stripe API

To access these reports programmatically, you can use the Reporting API to run a report for the specific metrics you want to fetch. Each of the metrics is available as report types, which you can request in the following way:

Command Line
curl https://api.stripe.com/v1/reporting/report_runs \ -u "
sk_test_4eC39HqLyjWDarjtT1zdp7dc
:"
\ -d report_type="apps.install_events.1" \ -d "parameters[interval_start]"=1680000000 \ -d "parameters[interval_end]"=1680100000

Users

The Users tab in your app’s details page lists all the currently installed users. If a user reinstalls your app, the installed column updates to the most recent install time.

App users tab

Custom analytics

If the provided metrics aren’t sufficient, you can leverage the platform primitives of Stripe to build your own set of metrics using the following solutions:

Using webhooks

Use webhooks to track and respond to users who install or uninstall your app or extension in real time, where you can get insights about:

  • Installed user’s account ID
    • Date and time of install
    • Uninstalled user’s account ID
    • Date and time of uninstall
  • Stripe app users
    • Extension users (if applicable)

For more information, see how to receive webhook events from your app.

Using Connect List API

Use the Connect List API to return a list of all the users who’ve currently installed your app and extension (if applicable).

For more information, see the List all connected accounts reference.

Was this page helpful?
Need help? Contact Support.
Watch our developer tutorials.
Check out our product changelog.
Questions? Contact Sales.
Powered by Markdoc
You can unsubscribe at any time. Read our privacy policy.
On this page
Get started
Available reports
Users
Custom analytics
Stripe Shell
Test mode
Welcome to the Stripe Shell! Stripe Shell is a browser-based shell with the Stripe CLI pre-installed. Login to your Stripe account and press Control + Backtick on your keyboard to start managing your Stripe resources in test mode. - View supported Stripe commands: - Find webhook events: - Listen for webhook events: - Call Stripe APIs: stripe [api resource] [operation] (e.g. )
The Stripe Shell is best experienced on desktop.
$