OnlyFans API
Chargebacks

List Chargebacks

Retrieve a list of chargebacks within a specified date range.

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

start_datestring

The start date for the chargebacks.

end_datestring

The end date for the chargebacks.

limit?string | null

Number of chargebacks to return (1-100). Default = 10

offset?string | null

Number of chargebacks to skip, used for pagination.

Response Body

curl -X GET "https://app.onlyfansapi.com/api/string/chargebacks?start_date=2025-01-01+00%3A00%3A00&end_date=2025-03-31+23%3A59%3A59&limit=50&offset=0"
{
  "data": {
    "list": [
      {
        "id": 0,
        "createdAt": "2025-01-01T00:00:00+00:00",
        "paymentType": "tips",
        "payment": {
          "amount": 12.34,
          "vatAmount": 0,
          "taxAmount": 0,
          "mediaTaxAmount": 0,
          "net": 12.34,
          "fee": 5,
          "createdAt": "2025-01-01T00:00:00+00:00",
          "currency": "USD",
          "description": "Tip from <a href=\"https://onlyfans.com/username\">Name</a>",
          "status": "undo",
          "user": {
            "view": "t",
            "id": 123,
            "name": "Name",
            "username": "username",
            "isVerified": false,
            "avatar": null,
            "avatarThumbs": null
          },
          "payoutPendingDays": 7,
          "id": "abc123"
        }
      }
    ],
    "marker": 123
  },
  "_meta": {
    "_credits": {
      "used": 1,
      "balance": 999964322,
      "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": 49994
    }
  }
}