GET
/
api
/
{account}
/
transactions
curl --request GET \
  --url https://app.onlyfansapi.com/api/{account}/transactions \
  --header 'Authorization: Bearer <token>'
{
  "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
    }
  }
}

Authorizations

Authorization
string
header
required

You can retrieve your token by visiting the OnlyFansAPI Console and clicking API Keys -> Create API Key.

Path Parameters

account
string
required

The Account ID

Query Parameters

limit
string

The number of transactions to return. Recommended: 10

Example:

10

startDate
string

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

Example:

"2025-01-01 00:00:00, -30days"

marker
string

The marker used for pagination. Default: null

Example:

"1739155047"

Response

200 - application/json

Success

The response is of type object.