v8

latestOpenAPI 3.0.3raw.githubusercontent.com2026-05-2526602.8 MB
Tracking Links

Get Tracking Link Stats

      Get dashboard-style summary plus daily and monthly metrics for a specific Tracking Link.
      <Callout title='Important information'>
        - `daily_metrics` returns **incremental per-day values**, not cumulative totals.
        - Cumulative totals are available in the `summary` section.
        - Historical daily data is only available from when we began recording daily link stats.
        - Daily data can only be tracked from the date the account was connected to OnlyFans API; earlier periods are not available.
      </Callout>
get/api/{account}/tracking-links/{tracking_link_id}/stats

Query parameters

date_startstring

Optional stats range start date

Example:2026-01-01T00:00:00Z

Optional stats range start date

date_endstring

Optional stats range end date

Example:2026-01-31T23:59:59Z

Optional stats range end date

Response

Success

Example response

{
  "data": {
    "summary": {
      "clicks_total": 320,
      "subs_total": 80,
      "revenue_total": 240.5,
      "spenders_total": 22,
      "revenue_cached_at": "2026-01-31T23:59:59+00:00"
    },
    "daily_metrics": [
      {
        "timestamp": "2026-01-30",
        "clicks": 12,
        "subs": 2,
        "revenue": 9.5,
        "spenders": 1
      },
      {
        "timestamp": "2026-01-31",
        "clicks": 17,
        "subs": 3,
        "revenue": 14,
        "spenders": 2
      }
    ],
    "monthly_metrics": [
      {
        "timestamp": "2026-01-01",
        "clicks": 320,
        "subs": 80,
        "revenue": 240.5,
        "spenders": 22
      }
    ]
  },
  "_meta": {
    "_credits": {
      "used": 1,
      "balance": 999999,
      "note": "Always"
    },
    "_cache": {
      "is_cached": false,
      "note": "Cache disabled for this endpoint"
    }
  }
}