get_top_events
Retrieve the most frequent events from the last 31 days to analyze user actions, prioritize feature development, and understand platform usage patterns in Mixpanel.
Instructions
Get a list of the most common events over the last 31 days. Useful for identifying key user actions, prioritizing feature development, and understanding overall platform usage patterns.
Input Schema
Name | Required | Description | Default |
---|---|---|---|
limit | No | Maximum number of events to return | |
project_id | No | The Mixpanel project ID. Optional since it has a default. | |
type | No | The type of events to fetch, either general, average, or unique, defaults to general |
Input Schema (JSON Schema)
{
"$schema": "http://json-schema.org/draft-07/schema#",
"additionalProperties": false,
"properties": {
"limit": {
"description": "Maximum number of events to return",
"type": "number"
},
"project_id": {
"description": "The Mixpanel project ID. Optional since it has a default.",
"type": "string"
},
"type": {
"description": "The type of events to fetch, either general, average, or unique, defaults to general",
"enum": [
"general",
"average",
"unique"
],
"type": "string"
}
},
"type": "object"
}