OnlyFans API
Transactions

List Transactions

Get a paginated list of transactions for an Account. Newest transactions are first.

GET
/api/{account}/transactions
AuthorizationBearer <token>

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

In: header

Path Parameters

accountstring

The Account ID

Query Parameters

limit?string

The number of transactions to return. Recommended: 10

startDate?string

The start date for transactions list. Default: -30days

marker?string

The marker used for pagination. Default: null

Response Body

curl -X GET "https://app.onlyfansapi.com/api/string/transactions?limit=10&startDate=2025-01-01+00%3A00%3A00%2C+-30days&marker=1739155047"
{
  "data": {
    "list": [
      {
        "amount": 19.99,
        "vatAmount": 0,
        "taxAmount": 0,
        "net": 15.99,
        "fee": 4,
        "createdAt": "2025-02-10T02:51:22+00:00",
        "currency": "USD",
        "description": "Payment for message from <a href=\"https://onlyfans.com/XXXXXXXX\">XXXXXXXX</a>",
        "status": "loading",
        "user": {
          "view": "t",
          "id": 123123123,
          "name": "Michael XXXXXXXX",
          "username": "u123123123",
          "isVerified": false,
          "avatar": "https://public.onlyfans.com/files/XXXXXXXXXX.jpg",
          "avatarThumbs": {
            "c50": "https://thumbs.onlyfans.com/public/files/thumbs/c50/XXXXXXXXXX.jpg",
            "c144": "https://thumbs.onlyfans.com/public/files/thumbs/c144/XXXXXXXXXX.jpg"
          }
        },
        "payoutPendingDays": 7,
        "id": "5XXXXXXXXXaa1aXXXXXXXXXXX"
      }
    ],
    "marker": 1739156703,
    "hasMore": true,
    "nextMarker": 1739155047
  },
  "_pagination": {
    "next_page": "https://app.onlyfansapi.com/api/acct_XXXXXXXX/transactions?startDate=-30days&marker=1739155047&"
  },
  "_meta": {
    "_credits": {
      "used": 1,
      "balance": 34,
      "note": "Always"
    },
    "_cache": {
      "is_cached": false,
      "note": "Cache disabled for this endpoint"
    },
    "_rate_limits": {
      "limit_minute": 1000,
      "limit_day": 50000,
      "remaining_minute": 990,
      "remaining_day": 49977
    }
  }
}