How to check session start in a jql query ? i can see on insights but when try to query on a JQL i cant find info. this automatic event has other name for querys?
This is an important limitation to be aware of: Session Start and Session End events are virtual events â they are computed by Mixpanel at query time within the UI and are not stored as actual events in your data store.
Because of this, they cannot be exported or queried via the API, including JQL. As the documentation states:
"These virtual events do not count toward your data allowance [...] they do not appear in your raw events list and cannot be exported via the API, as they are not stored as actual events in your data store." [Sessions FAQ]
So there is no alternative event name you can use in JQL to access Session Start/End â they simply don't exist as raw events to query against.
Alternatives
Since JQL is also currently in maintenance mode, the recommended alternatives for getting your data are: [JQL docs]
Raw event export: Use the Export API or Data Pipelines
In-app reporting: Use the Core Reports (Insights, Funnels, Flows) where Session Start/End events are fully supported
Query API: For other reporting needs
If you need session-like data via API, you would need to reconstruct sessions yourself from the raw events using your own logic (e.g., grouping events by user with a 30-minute inactivity timeout).
âšī¸Â Tip: Mention @kapa.ai in the thread for follow-ups or DM the app for 1-to-1 help.
Using query api, give me and example of the request for this
