get_today_top_events
Retrieve today's most active events from Mixpanel to identify trending user activities, monitor real-time engagement, and spot emerging patterns in your analytics data.
Instructions
Get today's top events from Mixpanel. Useful for quickly identifying the most active events happening today, spotting trends, and monitoring real-time user activity.
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)
{
"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"
}