query_funnel_report
Analyze user conversion paths by retrieving funnel data based on a funnel_id. Identify drop-off points and optimize multi-step processes using specified date ranges and parameters. Essential for improving user journey insights.
Instructions
Get data for a funnel based on a funnel_id. Useful for analyzing user conversion paths, identifying drop-off points in user journeys, and optimizing multi-step processes. Funnel IDs should be retrieved using the list_saved_funnels tool.
Input Schema
Name | Required | Description | Default |
---|---|---|---|
from_date | Yes | The date in yyyy-mm-dd format to begin querying from (inclusive) | |
funnel_id | Yes | The Mixpanel funnel ID that you wish to get data for | |
interval | No | The number of days you want each bucket to contain | |
length | No | The number of units each user has to complete the funnel | |
length_unit | No | The unit applied to the length parameter | |
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) | |
unit | No | Alternate way of specifying interval | |
workspace_id | No | The ID of the workspace if applicable |
Input Schema (JSON Schema)
{
"$schema": "http://json-schema.org/draft-07/schema#",
"additionalProperties": false,
"properties": {
"from_date": {
"description": "The date in yyyy-mm-dd format to begin querying from (inclusive)",
"type": "string"
},
"funnel_id": {
"description": "The Mixpanel funnel ID that you wish to get data for",
"type": "string"
},
"interval": {
"description": "The number of days you want each bucket to contain",
"type": "number"
},
"length": {
"description": "The number of units each user has to complete the funnel",
"type": "number"
},
"length_unit": {
"description": "The unit applied to the length parameter",
"enum": [
"day",
"hour",
"minute",
"second"
],
"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"
},
"unit": {
"description": "Alternate way of specifying interval",
"enum": [
"day",
"week",
"month"
],
"type": "string"
},
"workspace_id": {
"description": "The ID of the workspace if applicable",
"type": "string"
}
},
"required": [
"funnel_id",
"from_date",
"to_date"
],
"type": "object"
}