OnlyFans API
Tracking LinksShared Tracking Links

List Shared Tracking Links

List all Tracking Links (campaigns) shared with the account by other OF creators. Calls OnlyFans live and syncs to our cache.

GET
/api/{account}/shared-tracking-links
AuthorizationBearer <token>

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

In: header

Path Parameters

account*string

The Account ID

Query Parameters

limit?integer

The number of shared tracking links to return. Default 10

offset?integer

The offset used for pagination. Default 0

synchronous?boolean|null

Wait for the database sync to finish, instead of running it in the background. Will result in longer response times, use with caution. Default false

Response Body

application/json

curl -X GET "https://app.onlyfansapi.com/api/acct_XXXXXXXXXXXXXXX/shared-tracking-links?limit=10&offset=0&synchronous=false"
{
  "data": {
    "list": [
      {
        "id": 123,
        "campaignCode": 123,
        "campaignName": "Example shared tracking link",
        "campaignUrl": "https://onlyfans.com/username/c123",
        "subscribersCount": 0,
        "clicksCount": 12,
        "createdAt": "2025-01-01T01:01:01+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": true
  },
  "_pagination": {
    "next_page": "https://app.onlyfansapi.com/api/acct_abc123/shared-tracking-links?limit=10&offset=10"
  },
  "_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."
    }
  }
}