We just released our native n8n integration!ยป Try now
OnlyFans API
Release Forms

List Taggable Users

Get a paginated list of users that can be tagged in release forms. These are verified creators who have signed release forms to appear in your content. Use offset and limit for pagination.

GET
/api/{account}/release-forms/taggable-users
AuthorizationBearer <token>

Get your API Key from OnlyFansAPI Console - https://app.onlyfansapi.com/api-keys

In: header

Path Parameters

account*string

The Account ID

Query Parameters

limit?integer

Number of users to return per page (1-50). Must be at least 1. Must not be greater than 50.

offset?integer

Number of users to skip for pagination. Must be at least 0.

filter?string|null

Filter users by type: all or pending.

Value in"all" | "pending"
sort?string|null

Sort field: date or name.

Value in"date" | "name"
sortDirection?string|null

Sort direction: desc or asc.

Value in"desc" | "asc"

Response Body

application/json

curl -X GET "https://app.onlyfansapi.com/api/acct_XXXXXXXXXXXXXXX/release-forms/taggable-users?limit=50&offset=0&filter=all&sort=date&sortDirection=desc"
{
  "data": {
    "items": [
      {
        "id": 26898170,
        "name": "Example User",
        "type": "user",
        "user": {
          "view": "tu",
          "id": 26898170,
          "name": "Example User",
          "username": "exampleuser",
          "isVerified": true,
          "avatar": "https://public.onlyfans.com/files/.../26898170/avatar.jpg",
          "avatarThumbs": {
            "c50": "https://thumbs.onlyfans.com/public/files/thumbs/c50/.../26898170/avatar.jpg",
            "c144": "https://thumbs.onlyfans.com/public/files/thumbs/c144/.../26898170/avatar.jpg"
          },
          "ivStatus": "approved",
          "isFromGuest": false,
          "hiddenForRf": false
        }
      },
      {
        "id": 43888127,
        "name": "Another Creator",
        "type": "user",
        "user": {
          "view": "tu",
          "id": 43888127,
          "name": "Another Creator",
          "username": "anothercreator",
          "isVerified": true,
          "avatar": "https://public.onlyfans.com/files/.../43888127/avatar.jpg",
          "avatarThumbs": {
            "c50": "https://thumbs.onlyfans.com/public/files/thumbs/c50/.../43888127/avatar.jpg",
            "c144": "https://thumbs.onlyfans.com/public/files/thumbs/c144/.../43888127/avatar.jpg"
          },
          "ivStatus": "approved",
          "isFromGuest": true,
          "hiddenForRf": false
        }
      }
    ],
    "hasMore": true
  },
  "_pagination": {
    "next_page": "https://app.onlyfansapi.com/api/acct_abc123/release-forms/taggable-users?limit=50&offset=50"
  },
  "_meta": {
    "_credits": {
      "used": 1,
      "balance": 999999839,
      "note": "Always"
    },
    "_cache": {
      "is_cached": false,
      "note": "Cache disabled for this endpoint"
    },
    "_rate_limits": {
      "limit_minute": 10000000,
      "limit_day": 50000,
      "remaining_minute": 9999999,
      "remaining_day": 49997
    }
  }
}