Sourcemap Explorer
Stack · Analytics

Mixpanel

Mixpanel provides a business analytics service. It tracks user interactions with web and mobile applications and provides tools for targeted communication with them. Its toolset contains in-app A/B tests and user survey forms.

Analytics

About

Mixpanel provides a business analytics service. It tracks user interactions with web and mobile applications and provides tools for targeted communication with them. Its toolset contains in-app A/B tests and user survey forms.

Categories: Analytics

Quick facts

CategoriesAnalytics

Detection methodology for Analytics

Analytics SDKs are usually loaded from a vendor-controlled CDN (`googletagmanager.com`, `google-analytics.com`, `cdn.segment.com`, `cdn.amplitude.com`, `eu.i.posthog.com`) and expose a global with a recognisable surface. We catch the script src URL plus the global plus — when a sourcemap is available — the exact `node_modules/<sdk>/package.json` version. Tracker isolation prevents these vendor libraries from polluting the surrounding stack readings.

How we detect Mixpanel

Each signal alone is rarely conclusive — Sourcemap Explorer cross-references all of them and weights by confidence. You can reproduce any of these checks yourself in Chrome DevTools.

JavaScript global

Window-level global the technology installs on page. Reproducible by typing the path into the DevTools console.

window.mixpanel
Script src URL

Script URL pattern. Typically a CDN host or chunk path that ships with the technology.

cdn\.mxpnl\.com/libs/mixpanel\-([0-9.]+)\.min\.js
api\.mixpanel\.com/track
VITE_MIXPANEL_KEY
DOM selector

A DOM selector that only this technology's pages render. Verified at runtime by the content script.

meta[http-equiv='Content-Security-Policy'][content*='api.mixpanel.com']

FAQ

How do I check if a website is using Mixpanel?

Open the page in Chrome, click the Sourcemap Explorer toolbar icon, and read the Stack tab. The popup matches Mixpanel's fingerprint signals (response headers, asset URL prefixes, runtime globals, sourcemap paths) and flags it whenever any combination is found. The same checks can be reproduced manually in DevTools — see the "How we detect" section above.

What Mixpanel version can Sourcemap Explorer detect?

Mixpanel ships as a hosted analytics rather than a bundled npm package, so version-specific detection isn't always possible. Where the platform leaks a version in response headers (`X-Powered-By`, `Server`, generator meta tags) we surface it; otherwise we report presence only.

Where can I read more about Mixpanel?

Official site: https://mixpanel.com. For Sourcemap Explorer's detection guide, see the deep-dive link below or the related guides in the cross-link section.

Keep reading on Sourcemap Explorer

Detected by Sourcemap Explorer

Open the popup on any page running Mixpaneland you'll see the exact version pulled from the bundled package.json when sourcemaps are exposed.

Install free on Chrome