Skip to main content
GET
/
api
/
marketer
/
subscribers
Error
A valid request URL is required to generate request examples
{
  "status": "success",
  "data": [
    {
      "of_user_id": 789,
      "name": "John",
      "of_account_id": 456789,
      "campaign": {
        "public_id": "cplo_abc123",
        "type": "cpl"
      },
      "amount_spent": 23.45,
      "subscribed_at": "2026-01-15T12:00:00+00:00",
      "subscribed_at_ts": 1736942400,
      "badges": [
        "1_purchase",
        "3_messages"
      ]
    },
    {
      "of_user_id": 1011,
      "name": "Alice",
      "of_account_id": 456789,
      "campaign": {
        "public_id": "camp_xyz789",
        "type": "revshare"
      },
      "amount_spent": 105,
      "subscribed_at": "2026-01-10T08:30:00+00:00",
      "subscribed_at_ts": 1736500200,
      "badges": [
        "5_purchases",
        "pay_subscribe"
      ]
    }
  ]
}

Authorizations

Authorization
string
header
required

Query Parameters

offset
integer
default:0

Number of records to skip.

Required range: x >= 0
limit
integer
default:50

Number of records to return.

Required range: 1 <= x <= 1000
of_account_id
integer

Filter by OnlyFans account numeric id.

campaign_id
string

Filter by campaign public_id (RevShare) or CPL order public_id (CPL).

campaign_type
enum<string>

Filter by campaign type.

Available options:
revshare,
cpl
from
string<date>

Subscription date from (inclusive), format Y-m-d.

Example:

"2024-01-01"

to
string<date>

Subscription date to (inclusive), format Y-m-d.

Example:

"2024-01-31"

sort
enum<string>
default:subscribed_at_desc
Available options:
subscribed_at_desc,
subscribed_at_asc

Response

200 - application/json

Success

status
enum<string>
Available options:
success
data
object[]