Cohorts
For instructions on how to authenticate to use this endpoint, see API overview.
Endpoints
List all cohorts
Path Parameters
- project_idstring
Query Parameters
- limitinteger
- offsetinteger
Response
Request
GET
/api /projects /:project_id /cohorts
export POSTHOG_PERSONAL_API_KEY=[your personal api key]curl \-H "Authorization: Bearer $POSTHOG_PERSONAL_API_KEY" \https://app.posthog.com/api/projects/:project_id/cohorts/
Response
RESPONSE
{"count": 123,"next": "http://api.example.org/accounts/?offset=400&limit=100","previous": "http://api.example.org/accounts/?offset=200&limit=100","results": [{"id": 0,"name": "string","description": "string","groups": {"property1": null,"property2": null},"deleted": true,"filters": {"property1": null,"property2": null},"is_calculating": true,"created_by": {"id": 0,"uuid": "095be615-a8ad-4c33-8e9c-c7612fbf6c9f","distinct_id": "string","first_name": "string","email": "user@example.com","is_email_verified": true},"created_at": "2019-08-24T14:15:22Z","last_calculation": "2019-08-24T14:15:22Z","errors_calculating": 0,"count": 0,"is_static": true}]}
Create cohorts
Path Parameters
- project_idstring
Request Parameters
- namestring
- descriptionstring
- groupsobject
- deletedboolean
- filtersobject
- is_staticboolean
Response
Request
POST
/api /projects /:project_id /cohorts
export POSTHOG_PERSONAL_API_KEY=[your personal api key]curl-H 'Content-Type: application/json'\-H "Authorization: Bearer $POSTHOG_PERSONAL_API_KEY" \https://app.posthog.com/api/projects/:project_id/cohorts/\-d name="string"
Response
RESPONSE
{"id": 0,"name": "string","description": "string","groups": {"property1": null,"property2": null},"deleted": true,"filters": {"property1": null,"property2": null},"is_calculating": true,"created_by": {"id": 0,"uuid": "095be615-a8ad-4c33-8e9c-c7612fbf6c9f","distinct_id": "string","first_name": "string","email": "user@example.com","is_email_verified": true},"created_at": "2019-08-24T14:15:22Z","last_calculation": "2019-08-24T14:15:22Z","errors_calculating": 0,"count": 0,"is_static": true}
Retrieve cohorts
Path Parameters
- idinteger
- project_idstring
Response
Request
GET
/api /projects /:project_id /cohorts /:id
export POSTHOG_PERSONAL_API_KEY=[your personal api key]curl \-H "Authorization: Bearer $POSTHOG_PERSONAL_API_KEY" \https://app.posthog.com/api/projects/:project_id/cohorts/:id/
Response
RESPONSE
{"id": 0,"name": "string","description": "string","groups": {"property1": null,"property2": null},"deleted": true,"filters": {"property1": null,"property2": null},"is_calculating": true,"created_by": {"id": 0,"uuid": "095be615-a8ad-4c33-8e9c-c7612fbf6c9f","distinct_id": "string","first_name": "string","email": "user@example.com","is_email_verified": true},"created_at": "2019-08-24T14:15:22Z","last_calculation": "2019-08-24T14:15:22Z","errors_calculating": 0,"count": 0,"is_static": true}
Update cohorts
Path Parameters
- idinteger
- project_idstring
Request Parameters
- namestring
- descriptionstring
- groupsobject
- deletedboolean
- filtersobject
- is_staticboolean
Response
Request
PATCH
/api /projects /:project_id /cohorts /:id
export POSTHOG_PERSONAL_API_KEY=[your personal api key]curl -X PATCH \-H "Authorization: Bearer $POSTHOG_PERSONAL_API_KEY" \https://app.posthog.com/api/projects/:project_id/cohorts/:id/\-d name="string"
Response
RESPONSE
{"id": 0,"name": "string","description": "string","groups": {"property1": null,"property2": null},"deleted": true,"filters": {"property1": null,"property2": null},"is_calculating": true,"created_by": {"id": 0,"uuid": "095be615-a8ad-4c33-8e9c-c7612fbf6c9f","distinct_id": "string","first_name": "string","email": "user@example.com","is_email_verified": true},"created_at": "2019-08-24T14:15:22Z","last_calculation": "2019-08-24T14:15:22Z","errors_calculating": 0,"count": 0,"is_static": true}
Delete cohorts
Hard delete of this model is not allowed. Use a patch API call to set "deleted" to true
Path Parameters
- idinteger
- project_idstring
Request
DELETE
/api /projects /:project_id /cohorts /:id
export POSTHOG_PERSONAL_API_KEY=[your personal api key]curl -X DELETE \-H "Authorization: Bearer $POSTHOG_PERSONAL_API_KEY" \https://app.posthog.com/api/projects/:project_id/cohorts/:id/
Response
No responseRetrieve cohorts persons
Path Parameters
- idinteger
- project_idstring
Query Parameters
- formatstringOne of:
"csv"
"json"
Response
Request
GET
/api /projects /:project_id /cohorts /:id /persons
export POSTHOG_PERSONAL_API_KEY=[your personal api key]curl \-H "Authorization: Bearer $POSTHOG_PERSONAL_API_KEY" \https://app.posthog.com/api/projects/:project_id/cohorts/:id/persons/
Response
RESPONSE
{"id": 0,"name": "string","description": "string","groups": {"property1": null,"property2": null},"deleted": true,"filters": {"property1": null,"property2": null},"is_calculating": true,"created_by": {"id": 0,"uuid": "095be615-a8ad-4c33-8e9c-c7612fbf6c9f","distinct_id": "string","first_name": "string","email": "user@example.com","is_email_verified": true},"created_at": "2019-08-24T14:15:22Z","last_calculation": "2019-08-24T14:15:22Z","errors_calculating": 0,"count": 0,"is_static": true}