Tracking Links

List Tracking Link Spenders

Get list of spenders who made purchases through a Tracking Link

get/api/{account}/tracking-links/{tracking_link_id}/spenders

Query parameters

limitinteger

The number of spenders to return per page. Default 50.

Example:50

The number of spenders to return per page. Default 50.

offsetinteger

The offset used for pagination. Default 0.

The offset used for pagination. Default 0.

minSpendnumber

Minimal spend of a fan. Default 1. Must be at least 1.

Example:1

Minimal spend of a fan. Default 1. Must be at least 1.

Response

Success

Example response

{
  "data": [
    {
      "onlyfans_id": "100000001",
      "username": "user_001",
      "revenue": {
        "total": 26.8,
        "calculated_at": "2025-09-29T10:47:19.000000Z"
      }
    },
    {
      "onlyfans_id": "100000002",
      "username": "user_002",
      "revenue": {
        "total": 109.88,
        "calculated_at": "2025-09-29T10:47:19.000000Z"
      }
    },
    {
      "onlyfans_id": "100000003",
      "username": "user_003",
      "revenue": {
        "total": 32.96,
        "calculated_at": "2025-09-29T10:47:19.000000Z"
      }
    }
  ],
  "_meta": {
    "_credits": {
      "used": 1,
      "balance": 224802,
      "note": "Always"
    },
    "_cache": {
      "is_cached": false,
      "note": "Cache disabled for this endpoint"
    },
    "_rate_limits": {
      "limit_minute": 1000,
      "limit_day": 50000,
      "remaining_minute": 994,
      "remaining_day": 49929
    }
  }
}

Changes

Changed in 1 of the 8 revisions of this API.61

  • 93a6dfdeeb6761See the full diff
    • removed the optional property data/items/onlyfans_user_data from the response with the 200 status

      response-optional-property-removed

    • removed the optional property data/items/revenue/messages from the response with the 200 status

      response-optional-property-removed

    • removed the optional property data/items/revenue/posts from the response with the 200 status

      response-optional-property-removed

    • removed the optional property data/items/revenue/streams from the response with the 200 status

      response-optional-property-removed

    • removed the optional property data/items/revenue/subscriptions from the response with the 200 status

      response-optional-property-removed

    • removed the optional property data/items/revenue/tips from the response with the 200 status

      response-optional-property-removed

    • added the optional property data/items/revenue/calculated_at to the response with the 200 status

      response-optional-property-added