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

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

Number of transactions to return

Example:

10

marker
string

The marker used for pagination. Default: null

Example:

"1739155047"

Response

200 - application/json

The response is of type object.