query_funnel_report
Analyze conversion rates through multi-step user flows to identify drop-off points and optimize user journey performance.
Instructions
Get funnel conversion data. Useful for analyzing conversion rates through multi-step user flows and identifying drop-off points.
Input Schema
Name | Required | Description | Default |
---|---|---|---|
events | Yes | JSON array string of events that make up the funnel steps | |
from_date | Yes | The date in yyyy-mm-dd format to begin querying from (inclusive) | |
funnel_window | No | Number of days users have to complete the funnel | |
interval | No | The time interval for funnel analysis | |
project_id | No | The Mixpanel project ID. Optional since it has a default. | |
to_date | Yes | The date in yyyy-mm-dd format to query to (inclusive) |
Input Schema (JSON Schema)
{
"properties": {
"events": {
"description": "JSON array string of events that make up the funnel steps",
"type": "string"
},
"from_date": {
"description": "The date in yyyy-mm-dd format to begin querying from (inclusive)",
"type": "string"
},
"funnel_window": {
"description": "Number of days users have to complete the funnel",
"type": "number"
},
"interval": {
"description": "The time interval for funnel analysis",
"enum": [
"day",
"week",
"month"
],
"type": "string"
},
"project_id": {
"description": "The Mixpanel project ID. Optional since it has a default.",
"type": "string"
},
"to_date": {
"description": "The date in yyyy-mm-dd format to query to (inclusive)",
"type": "string"
}
},
"required": [
"from_date",
"to_date",
"events"
],
"type": "object"
}