We just released our native n8n integration!» Try now
OnlyFans API
Fans

Get Subscription History

Get Subscription History for a given OnlyFans User ID. This can be useful, for example, when the user's subscribed to your account for the first time.

GET
/api/{account}/fans/{user_id}/subscriptions-history
AuthorizationBearer <token>

Get your API Key from OnlyFansAPI Console - https://app.onlyfansapi.com/api-keys

In: header

Path Parameters

accountstring

The Account ID

user_idstring

The OnlyFans ID of the User.

Response Body

curl -X GET "https://app.onlyfansapi.com/api/string/fans/string/subscriptions-history"
{
  "data": {
    "list": [
      {
        "subscribeDate": "2022-06-18T19:39:16+00:00",
        "expireDate": "2022-07-18T19:39:16+00:00",
        "price": 12.99
      },
      {
        "subscribeDate": "2022-08-15T02:59:40+00:00",
        "expireDate": "2022-09-15T02:59:40+00:00",
        "price": 11.04
      },
      {
        "subscribeDate": "2022-09-25T15:21:27+00:00",
        "expireDate": "2022-10-25T15:21:27+00:00",
        "price": 12.99
      },
      {
        "subscribeDate": "2023-01-07T15:53:09+00:00",
        "expireDate": "2023-02-07T15:53:09+00:00",
        "price": 12.99
      },
      {
        "subscribeDate": "2023-03-03T16:10:44+00:00",
        "expireDate": "2023-04-03T16:10:44+00:00",
        "price": 12.99
      },
      {
        "subscribeDate": "2023-05-07T19:38:24+00:00",
        "expireDate": "2023-06-07T19:38:24+00:00",
        "price": 12.99
      },
      {
        "subscribeDate": "2023-10-16T15:43:16+00:00",
        "expireDate": "2023-11-16T15:43:16+00:00",
        "price": 12.99
      },
      {
        "subscribeDate": "2024-01-27T11:52:03+00:00",
        "expireDate": "2024-02-27T11:52:03+00:00",
        "price": 12.99
      },
      {
        "subscribeDate": "2024-06-30T15:27:07+00:00",
        "expireDate": "2024-07-30T15:27:07+00:00",
        "price": 12.99
      },
      {
        "subscribeDate": "2024-09-27T03:20:34+00:00",
        "expireDate": "2024-10-27T03:20:34+00:00",
        "price": 12.99
      },
      {
        "subscribeDate": "2024-12-18T19:57:33+00:00",
        "expireDate": "2025-01-18T19:57:33+00:00",
        "price": 3.25
      },
      {
        "subscribeDate": "2025-05-13T02:26:27+00:00",
        "expireDate": "2025-06-13T02:26:27+00:00",
        "price": 3.25
      },
      {
        "subscribeDate": "2025-06-20T02:35:27+00:00",
        "expireDate": "2025-07-20T02:35:27+00:00",
        "price": 12.99
      },
      {
        "subscribeDate": "2025-08-04T14:56:23+00:00",
        "expireDate": "2025-09-04T14:56:23+00:00",
        "price": 3.25
      },
      {
        "subscribeDate": "2025-10-11T05:45:51+00:00",
        "expireDate": "2025-10-18T05:45:51+00:00",
        "price": 0
      },
      {
        "subscribeDate": "2025-11-07T21:55:21+00:00",
        "expireDate": "2025-12-07T21:55:21+00:00",
        "price": 12.99
      }
    ],
    "hasMore": false
  },
  "_meta": {
    "_credits": {
      "used": 1,
      "balance": 224348,
      "note": "Always"
    },
    "_cache": {
      "is_cached": false,
      "note": "Cache disabled for this endpoint"
    },
    "_rate_limits": {
      "limit_minute": 1000,
      "limit_day": null,
      "remaining_minute": 998,
      "remaining_day": null,
      "notice": "We have decided to remove our daily rate limits. Please remove any references to these in your integrations."
    }
  }
}