kapa.ai what is the API call for exporting all profiles (not the call for exporting events)
To export all user profiles (not events) from Mixpanel via API, you should use the Engage API. Here is a sample API call: sh curl --request POST \ --url '[https://mixpanel.com/api/query/engage?project_id=YOUR_PROJECT_ID](https://mixpanel.com/api/query/engage?project_id=YOUR_PROJECT_ID)' \ --header 'accept: application/json' \ --header 'authorization: Basic YOUR_TOKEN' \ --header 'content-type: application/x-www-form-urlencoded'LBKS
This call will return all user profiles in your specified project. The response will include a JSON object with the profiles in the results key, where each profile is an object containing the user's properties. You can also use parameters like output_properties to limit which properties are returned, or filter_by_cohort to export specific cohorts of users. For more details, see the Mixpanel documentation on exporting profiles.
kapa.ai is still learning and improving, please let me know how I did by reacting below.
ℹ️ Tip: Mention @kapa.ai in the thread for follow-ups or DM the app for 1-to-1 help.