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
}
}
}
Get a paginated list of transactions for an Account. Newest transactions are first.
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
}
}
}
You can retrieve your token by visiting the OnlyFansAPI Console and clicking API Keys -> Create API Key.
The Account ID
The number of transactions to return. Recommended: 10
10
The start date for transactions list. Default: -30days
"2025-01-01 00:00:00, -30days"
The marker used for pagination. Default: null
"1739155047"
Success
The response is of type object
.