API Keys
Banking
Connect OnlyFans Account
Mass Messaging
Media Vault
Media Vault Lists
Notifications
Payouts
Post Comments
Post Labels
Posts
Public Profiles
Saved For Later (Messages)
Saved For Later (Posts)
Statistics | Reach
Statistics | Statements
Tracking Links
Transactions
Trial Links
Users
Transactions
List Transactions
Get a paginated list of transactions for an Account. Newest transactions are first.
GET
/
api
/
{account}
/
transactions
List Transactions
Copy
curl --request GET \
--url https://app.onlyfansapi.com/api/{account}/transactions \
--header 'Authorization: Bearer <token>'
Copy
{
"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
You can retrieve your token by visiting the OnlyFansAPI Console and clicking API Keys -> Create API Key.
Path Parameters
The Account ID
Query Parameters
The number of transactions to return. Recommended: 10
Example:
10
The start date for transactions list. Default: -30days
Example:
"2025-01-01 00:00:00, -30days"
The marker used for pagination. Default: null
Example:
"1739155047"
Response
200 - application/json
Success
The response is of type object
.
List Transactions
Copy
curl --request GET \
--url https://app.onlyfansapi.com/api/{account}/transactions \
--header 'Authorization: Bearer <token>'
Copy
{
"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
}
}
}
Assistant
Responses are generated using AI and may contain mistakes.