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