OnlyFans API
Payouts

List Transactions (Earnings)

List all transactions for the account.

GET
/api/{account}/payouts/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

Number of transactions to return

marker?string

The marker used for pagination. Default: null

Response Body

curl -X GET "https://app.onlyfansapi.com/api/string/payouts/transactions?limit=10&marker=1739155047"
{
  "data": {
    "list": [
      {
        "amount": 12.34,
        "vatAmount": 12.34,
        "taxAmount": 12.34,
        "mediaTaxAmount": 12.34,
        "net": 12.34,
        "fee": 12.34,
        "createdAt": "2025-01-01T01:01:01+00:00",
        "currency": "USD",
        "description": "Subscription from <a href=\"https://onlyfans.com/username\">Name</a>",
        "status": "loading",
        "user": {
          "view": "t",
          "id": 123,
          "name": "Name",
          "username": "username",
          "isVerified": false,
          "avatar": null,
          "avatarThumbs": null
        },
        "payoutPendingDays": 7,
        "id": "abc123"
      }
    ],
    "marker": 123,
    "hasMore": true,
    "nextMarker": 1234
  },
  "_meta": {
    "_credits": {
      "used": 1,
      "balance": 999999845,
      "note": "Always"
    },
    "_cache": {
      "is_cached": false,
      "note": "Cache disabled for this endpoint"
    },
    "_rate_limits": {
      "limit_minute": 1000,
      "limit_day": 50000,
      "remaining_minute": 999,
      "remaining_day": 49849
    }
  }
}