The Only API docs
Accounts

List connected accounts

Returns every creator account connected to this CRM panel — OnlyFans and Fansly. Each entry carries of_user_id, username, and platform ("onlyfans" or "fansly"). Use…

GET
/accounts

Returns every creator account connected to this CRM panel — OnlyFans and Fansly. Each entry carries of_user_id, username, and platform ("onlyfans" or "fansly"). Use of_user_id as the {of_user_id} path parameter and as the user-id header elsewhere in this API.

Guide: Connect an account

X-API-Key<token>

Your CRM panel API key

In: header

Query Parameters

include_session?boolean

Include the per-account session block (sess, auth_id, proxy) in each entry.

Defaultfalse

Response Body

application/json

curl -X GET "https://example.com/accounts"
{  "success": true,  "count": 2,  "accounts": [    {      "of_user_id": "482687148",      "username": "creator_one",      "platform": "onlyfans"    },    {      "of_user_id": "739104882",      "username": "creator_two",      "platform": "fansly"    }  ]}