mixpanel

by dragonkhoi
Verified

get_today_top_events

Get today's top events from Mixpanel

Input Schema

NameRequiredDescriptionDefault
limitNoMaximum number of events to return
project_idNoThe Mixpanel project ID
typeNoThe type of events to fetch

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", "type": "string" }, "type": { "description": "The type of events to fetch", "enum": [ "general", "total", "unique" ], "type": "string" } }, "type": "object" }