The Only API docs
Accounts

Read a Fansly account's stored session

Return the current Fansly session for one account you own, so an external worker can pick up refreshed tokens instead of holding a stale copy. We stay the credential…

GET
/accounts/{of_user_id}/fansly-credentials

Return the current Fansly session for one account you own, so an external worker can pick up refreshed tokens instead of holding a stale copy. We stay the credential authority: we are the thing that re-logs in and rewrites these tokens, so a caller that re-reads here each run is always current.

Read-only — it mutates nothing, and is gated by the same API key and ownership checks as every other account route. Fansly only; an OnlyFans account returns 400.

Guide: Connect an account

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.

Response Body

application/json

curl -X GET "https://example.com/accounts/string/fansly-credentials"
{  "auth_token": null,  "client_id": null,  "of_user_id": "string",  "platform": "string",  "proxy": "string",  "session_id": null,  "success": true,  "username": "string"}