query_profiles
Filter and retrieve user profiles from Mixpanel based on specific properties and criteria to analyze user segments and behaviors.
Instructions
Query user profiles with filtering. Useful for finding users based on profile properties and analyzing user segments.
Input Schema
Name | Required | Description | Default |
---|---|---|---|
limit | No | Maximum number of profiles to return | |
project_id | No | The Mixpanel project ID. Optional since it has a default. | |
select | No | JSON array string of properties to return. If not specified, returns all properties | |
where | No | JSON string representing the filter conditions for profiles |
Input Schema (JSON Schema)
{
"properties": {
"limit": {
"description": "Maximum number of profiles to return",
"type": "number"
},
"project_id": {
"description": "The Mixpanel project ID. Optional since it has a default.",
"type": "string"
},
"select": {
"description": "JSON array string of properties to return. If not specified, returns all properties",
"type": "string"
},
"where": {
"description": "JSON string representing the filter conditions for profiles",
"type": "string"
}
},
"type": "object"
}