list_saved_cohorts
Retrieve all cohorts within a Mixpanel project to identify user segments, plan targeted analyses, and extract cohort IDs for filtering in reports.
Instructions
Get all cohorts in a given project. Useful for discovering user segments, planning targeted analyses, and retrieving cohort IDs for filtering in other reports.
Input Schema
Name | Required | Description | Default |
---|---|---|---|
project_id | No | The Mixpanel project ID. Optional since it has a default. | |
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": {
"project_id": {
"description": "The Mixpanel project ID. Optional since it has a default.",
"type": "string"
},
"workspace_id": {
"description": "The ID of the workspace if applicable",
"type": "string"
}
},
"type": "object"
}