We just released our native n8n integration!ยป Try now
OnlyFans API
Smart Links

Get Smart Link Stats

Get dashboard-style summary plus daily and monthly metrics for a specific Smart Link on the current account

GET
/api/{account}/smart-links/{smart_link_id}/stats
AuthorizationBearer <token>

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

In: header

Path Parameters

account*string

The Account ID

smart_link_id*string

The ID of the smart link.

Query Parameters

date_start?string

Optional stats range start date

date_end?string

Optional stats range end date

Response Body

application/json

curl -X GET "https://app.onlyfansapi.com/api/acct_XXXXXXXXXXXXXXX/smart-links/id/stats?date_start=2026-01-01T00%3A00%3A00Z&date_end=2026-01-31T23%3A59%3A59Z"
{
  "data": {
    "summary": {
      "clicks_total": 150,
      "subs_total": 45,
      "revenue_total": 1250,
      "spenders_total": 20
    },
    "daily_metrics": [
      {
        "timestamp": "2026-01-30",
        "clicks": 9,
        "subs": 2,
        "revenue": 33,
        "spenders": 1
      },
      {
        "timestamp": "2026-01-31",
        "clicks": 16,
        "subs": 5,
        "revenue": 95,
        "spenders": 2
      }
    ],
    "monthly_metrics": [
      {
        "timestamp": "2026-01-01",
        "clicks": 150,
        "subs": 45,
        "revenue": 1250,
        "spenders": 20
      }
    ]
  },
  "_meta": {
    "_credits": {
      "used": 1,
      "balance": 999999,
      "note": "Always"
    },
    "_cache": {
      "is_cached": false,
      "note": "Cache disabled for this endpoint"
    }
  }
}