top_event_property_values
Identify the top values of a specific property within Mixpanel data to analyze value distribution, uncover common categories, and plan targeted insights.
Instructions
Get the top values for a property. Useful for understanding the distribution of values for a specific property, identifying the most common categories or segments, and planning further targeted analyses.
Input Schema
Name | Required | Description | Default |
---|---|---|---|
event | Yes | The event that you wish to get data for. Note: this is a single event name, not an array | |
limit | No | The maximum number of values to return. Defaults to 255 | |
name | Yes | The name of the property you would like to get data for | |
project_id | No | The Mixpanel project ID | |
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": {
"event": {
"description": "The event that you wish to get data for. Note: this is a single event name, not an array",
"type": "string"
},
"limit": {
"description": "The maximum number of values to return. Defaults to 255",
"type": "number"
},
"name": {
"description": "The name of the property you would like to get data for",
"type": "string"
},
"project_id": {
"description": "The Mixpanel project ID",
"type": "string"
},
"workspace_id": {
"description": "The ID of the workspace if applicable",
"type": "string"
}
},
"required": [
"event",
"name"
],
"type": "object"
}