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'
--header 'accept: application/json'
--header 'authorization: Basic YOUR_TOKEN'
--header 'content-type: application/x-www-form-urlencoded'
LBKSThis 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](https://docs.mixpanel.com/docs/export-methods#exporting-profiles).