The Only API docs
Exports

Create an export job

Kick off an async data export for one account. Returns 202 with the created job.

POST
/accounts/{of_user_id}/exports

Kick off an async data export for one account. Returns 202 with the created job.

Progress streams over GET /events/stream as export.progress; completion fires export.complete. The generated ZIP is downloadable from GET /accounts/{of_user_id}/exports/{job_id}/download for the configured retention window. Fansly-aware.

Guide: Data exports

X-API-Key<token>

Your CRM panel API key

In: header

Path Parameters

of_user_id*string

Creator account ID of the connected account (OnlyFans or Fansly). Use GET /accounts to list connected accounts and their IDs.

Request Body

application/json

TypeScript Definitions

Use the request body type in TypeScript.

Response Body

application/json

curl -X POST "https://example.com/accounts/string/exports" \  -H "Content-Type: application/json" \  -d '{}'
{  "already_running": true,  "job": null,  "success": true,  "warning": "string"}