List vault collections
The account's vault collections (Fansly calls them albums).
The account's vault collections (Fansly calls them albums).
System buckets come back with system: true — they are auto-populated (All, Posts, Messages) and cannot be deleted. Everything else is a collection the creator made.
Unpaginated: one call returns them all.
Fansly only.
Authorization
apiKey Your CRM panel API key
In: header
Path Parameters
Creator account ID of the connected account (OnlyFans or Fansly). Use GET /accounts to list connected accounts and their IDs.
Header Parameters
Proxy URL — HTTP or SOCKS5 (e.g. http://user:pass@host:port or socks5://user:pass@host:port). Optional on post-connection routes, where it overrides the proxy saved at login time. Required on the connection routes (POST /accounts/login, POST /accounts/login/cookies, POST /accounts/login/verify-otp) for OnlyFans accounts; optional for Fansly.
Response Body
application/json
curl -X GET "https://example.com/accounts/string/vault/collections"{ "success": true, "collections": [ { "id": "string", "name": "string", "description": "string", "system": true, "mediaCount": 0, "createdAt": "string" } ], "hasMore": true}Vault
The creator's own media library. Fansly organises it into collections (its albums) — list them, list the media inside one, and create or delete your own. **Fansly only**: an OnlyFans account gets `501 platform_not_supported`; use `GET /api2/v2/vault/media` on the passthrough instead.
Create a vault collection POST
Create a new collection. Fansly only. Requires writes to be enabled for the account.