Mixpanel · Schema
Mixpanel Funnel
Represents a conversion funnel in Mixpanel, defining a sequence of events that users are expected to complete and measuring drop-off at each step.
AnalyticsData AnalysisEvent TrackingProduct AnalyticsUser Behavior
Properties
| Name | Type | Description |
|---|---|---|
| funnel_id | integer | Unique identifier for the funnel |
| name | string | Display name of the funnel |
| steps | array | Ordered sequence of funnel steps |
| conversionWindow | object | Time window for funnel completion |
JSON Schema
{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"$id": "https://developer.mixpanel.com/schemas/mixpanel/funnel.json",
"title": "Mixpanel Funnel",
"description": "Represents a conversion funnel in Mixpanel, defining a sequence of events that users are expected to complete and measuring drop-off at each step.",
"type": "object",
"required": ["funnel_id", "name"],
"properties": {
"funnel_id": {
"type": "integer",
"description": "Unique identifier for the funnel"
},
"name": {
"type": "string",
"description": "Display name of the funnel"
},
"steps": {
"type": "array",
"description": "Ordered sequence of funnel steps",
"items": {
"$ref": "#/$defs/FunnelStep"
},
"minItems": 2
},
"conversionWindow": {
"type": "object",
"description": "Time window for funnel completion",
"properties": {
"length": {
"type": "integer",
"minimum": 1,
"description": "Number of time units"
},
"unit": {
"type": "string",
"enum": ["minute", "hour", "day"],
"description": "Time unit for the conversion window"
}
}
}
},
"$defs": {
"FunnelStep": {
"type": "object",
"description": "A single step in a conversion funnel",
"properties": {
"event": {
"type": "string",
"description": "Event name for this step"
},
"count": {
"type": "integer",
"minimum": 0,
"description": "Number of users who completed this step"
},
"avgTime": {
"type": "number",
"description": "Average time in seconds to reach this step from the previous step"
},
"overallConversionRatio": {
"type": "number",
"minimum": 0,
"maximum": 1,
"description": "Conversion rate from step 1 to this step"
},
"stepConversionRatio": {
"type": "number",
"minimum": 0,
"maximum": 1,
"description": "Conversion rate from the previous step to this step"
}
}
}
}
}
Work with this as data
Every JSON Schema here is available over the APIs.io API and to AI agents over MCP.
MCP server
One button, every client — Claude, Cursor, VS Code and the rest.
https://apis.io/mcp
Tools for schemas
4 MCP tools reach this
find_json_schemasBrowse and filter every JSON Schema in the catalog.apis_io_searchSTART HERE — APIs, providers and tags for one query, each with its total.resolveTurn a domain, URL or GitHub org into the provider it belongs to.find_cohortsEvery scored population of providers in the catalog.
Call it yourself
curl for this page
This JSON Schema
curl "https://apis.io/api/v1/json-schemas/mixpanel-funnel"
All schemas
curl "https://apis.io/api/v1/json-schemas?limit=25"
Discovery needs no key. Ratings and market analysis are Pro.
Get an API key
Free tier, no form to fill in. Signing in shares your email address with us — we store it to create your key and to recognise you if you sign in with another provider. See our Privacy Policy and Terms.
A second provider on the same verified email joins the account you already have.