v8

latestOpenAPI 3.0.3raw.githubusercontent.com2026-05-2526602.8 MB
Smart Links

List Smart Link Spenders

Compatibility endpoint returning fans with attributed spend through a Smart Link

get/api/smart-links/{smart_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

Example:1

Minimal spend of a fan. Default 1

Response

Success

Example response

{
  "data": [
    {
      "onlyfans_id": "100000001",
      "username": "demo_spender_a",
      "revenue": {
        "total": 109.88,
        "calculated_at": "2026-01-31T12:00:00+00:00"
      }
    },
    {
      "onlyfans_id": "100000002",
      "username": "demo_spender_b",
      "revenue": {
        "total": 32.96,
        "calculated_at": "2026-01-31T12:00:00+00:00"
      }
    }
  ],
  "_meta": {
    "_credits": {
      "used": 0,
      "balance": 999999,
      "note": "Free endpoint"
    },
    "_cache": {
      "is_cached": false,
      "note": "Cache disabled for this endpoint"
    }
  }
}