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

Get Subscriber Statistics

Get subscriber and earning statistics for an account for a specified timeframe. Optionally, filter by all, renews, or new subscribers.

GET
/api/{account}/subscribers/statistics
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_date?string | null

The start date for the period. Keep empty to calculate everything.

end_date?string | null

The end date for the period. Keep empty to calculate everything.

type?string | null

Filter the subscriber statistics (default = total)

Value in"total" | "renew" | "new"

Response Body

curl -X GET "https://app.onlyfansapi.com/api/string/subscribers/statistics?start_date=2025-01-01+00%3A00%3A00&end_date=2025-03-31+23%3A59%3A59&type=total"
{
  "data": {
    "earnings": [
      {
        "date": "2025-01-01T00:00:00+00:00",
        "count": 12.34
      }
    ],
    "subscribes": [
      {
        "date": "2025-01-01T00:00:00+00:00",
        "count": 123
      }
    ],
    "total": 12.34,
    "delta": 12.3,
    "subscribers": 123
  },
  "_meta": {
    "_credits": {
      "used": 1,
      "balance": 999999287,
      "note": "Always"
    },
    "_cache": {
      "is_cached": false,
      "note": "Cache disabled for this endpoint"
    },
    "_rate_limits": {
      "limit_minute": 1000,
      "limit_day": 50000,
      "remaining_minute": 998,
      "remaining_day": 49994
    }
  }
}