Stored Shared Tracking Links

List Stored Shared Tracking Links

List all shared Tracking Links from the OnlyFansAPI Cache. This is a free endpoint that does not call the OnlyFans API.

get/api/{account}/stored/shared-tracking-links

Query parameters

limitinteger

The number of shared tracking links to return. Default 10

Example:10

The number of shared tracking links to return. Default 10

offsetinteger

The offset used for pagination. Default 0

The offset used for pagination. Default 0

filter[search]string

Search campaign name, owner username, or a pasted OnlyFans tracking link URL.

Example:twitter

Search campaign name, owner username, or a pasted OnlyFans tracking link URL.

filter[tags]string

Filter by one or more tag names or slugs. Accepts CSV or repeated array values (filter[tags][]=...) and matches any tag. Tag namespace is shared with owned Tracking Links.

Example:collab,sfs

Filter by one or more tag names or slugs. Accepts CSV or repeated array values (filter[tags][]=...) and matches any tag. Tag namespace is shared with owned Tracking Links.

Request body

limitinteger

Must be at least 1. Must not be greater than 1000.

offsetinteger

Must be at least 0.

Example request

{
  "limit": 20,
  "offset": 10,
  "filter": {
    "search": "qjfkaneplhctvgipiesph",
    "tags": [
      "p"
    ]
  }
}

Response

Success

Example response

{
  "data": {
    "list": [
      {
        "id": 123,
        "campaignCode": 123,
        "campaignName": "Example tracking link",
        "campaignUrl": "https://onlyfans.com/USERNAME/c123",
        "subscribersCount": 123,
        "clicksCount": 123,
        "createdAt": "2025-01-01T00:00:00+00:00",
        "endDate": null,
        "isDeleted": false,
        "tags": [],
        "owner": {
          "id": 123,
          "username": "username",
          "name": "Model name",
          "avatarThumbUrl": "https://thumbs.onlyfans.com/public/files/thumbs/a123/a/aa/aaa/abc123/123/avatar.jpg"
        }
      }
    ],
    "hasMore": false
  },
  "_pagination": {
    "next_page": null,
    "notice": null
  },
  "_meta": {
    "_credits": {
      "used": 1,
      "balance": 10055833,
      "note": "Always"
    },
    "_cache": {
      "is_cached": false,
      "note": "Cache disabled for this endpoint"
    },
    "_rate_limits": {
      "limit_minute": 5000,
      "limit_day": null,
      "remaining_minute": 4999,
      "remaining_day": null,
      "notice": "We have decided to remove our daily rate limits. Please remove any references to these in your integrations."
    }
  }
}

Changes