Frequently Asked Questions
Find answers to common questions about using Mixpanel.General
What does Mixpanel do?
What does Mixpanel do?
Can I demo Mixpanel?
Can I demo Mixpanel?
How much does it cost to use Mixpanel?
How much does it cost to use Mixpanel?
Sending Data to Mixpanel
Why can't I see any data in my Mixpanel project?
Why can't I see any data in my Mixpanel project?
- Incorrect Project Token - Using the wrong project token in your initialization code will lead to your tracked data not arriving to your project. Always verify that the token matches the token shown in your project settings.
- Mismatched Data Residency - If your Mixpanel project data residency setting does not match the API endpoint you are sending data to, your data will not be ingested. If your project data residency is set to EU or India, make sure to route your data to the correct API server URL in your initialization code. Learn more about EU Residency and India Residency.
- Implementation Issues - Implementation errors can prevent Mixpanel SDK methods from triggering as expected. To help identify and resolve these issues during development, enable debug mode in your SDK. This will provide logs of the Mixpanel requests being triggered, along with the associated payloads.
What methods are available for importing data into Mixpanel?
What methods are available for importing data into Mixpanel?
How does ad-blockers affect Mixpanel tracking?
How does ad-blockers affect Mixpanel tracking?
How do I track first-touch UTM tags?
How do I track first-touch UTM tags?
Identity Management
What is a distinct_id?
What is a distinct_id?
How is distinct_id generated?
How is distinct_id generated?
distinct_id for anonymous users. When a user registers or logs in, you can assign a known user ID (such as a database ID) by calling the identify method in the SDK. The ID is then stored in the cookie or local storage for persistence.On the server side, you are responsible for generating both anonymous and known user IDs, as well as ensuring their consistency and persistence across events.Learn more about identifying users.What is the best practice for handling user identity in a client-side implementation?
What is the best practice for handling user identity in a client-side implementation?
- Call
identify()during both registration and login, using a consistent user ID in each case to ensure proper user identification. - Call
reset()on logout to clear cookies or local storage and generate a new ID. This prevents unintended merging of data from multiple users sharing the same device. - Include your user ID as both a super property and a user property. Doing so makes it easier to query and export data.
Why do I see data from 2 different users under a single Mixpanel profile?
Why do I see data from 2 different users under a single Mixpanel profile?
reset() when users log out on shared devices.If multiple users use the same device and you do not call reset() when a user logs out, the next user who logs in will inherit the previous user’s distinct_id. When you then call identify() with the new user’s ID, Mixpanel merges the previous and new IDs into a single identity cluster. This causes events from both users to appear under the same profile.Learn more about identifying users.Building Reports and Analyses
How do I get started and what should I analyze?
How do I get started and what should I analyze?
How do I know my report is correct?
How do I know my report is correct?
What are the common analysis types done in Mixpanel?
What are the common analysis types done in Mixpanel?
- Insights: Visualize trends and compositions within your data
- Funnels: Measure conversions through a series of events
- Retention: Measure engagement over time
- Flows: See frequent paths taken by users to or from any event
How can I get automated insights from alerts and setup anomaly detection?
How can I get automated insights from alerts and setup anomaly detection?
Exporting Data
How can I export my data from Mixpanel?
How can I export my data from Mixpanel?
Can I automate data exports?
Can I automate data exports?
Is there an additional cost for exporting data?
Is there an additional cost for exporting data?
Managing Projects
How should we structure our Mixpanel projects?
How should we structure our Mixpanel projects?
How do we onboard new teammates and empower them to use Mixpanel?
How do we onboard new teammates and empower them to use Mixpanel?
Need more help? Contact Mixpanel Support