OnlyFans API
Tracking links

List Tracking Link Subscribers

Get list of subscribers who joined through a Tracking Link

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

You can retrieve your token by visiting the OnlyFansAPI Console and clicking API Keys -> Create API Key.

In: header

Path Parameters

accountstring

The Account ID

tracking_link_idstring

The ID of the Tracking Link. Can be retrieved from the above store and list endpoints.

Query Parameters

limitinteger

The number of subscribers to return per page. Default 10

offsetinteger

The offset used for pagination. Default 0

Response Body

curl -X GET "https://app.onlyfansapi.com/api/acct_XXXXXXXXXXXXXXX/tracking-links/1234567890/subscribers?limit=10"
fetch("https://app.onlyfansapi.com/api/acct_XXXXXXXXXXXXXXX/tracking-links/1234567890/subscribers?limit=10")
package main

import (
  "fmt"
  "net/http"
  "io/ioutil"
)

func main() {
  url := "https://app.onlyfansapi.com/api/acct_XXXXXXXXXXXXXXX/tracking-links/1234567890/subscribers?limit=10"

  req, _ := http.NewRequest("GET", url, nil)
  
  res, _ := http.DefaultClient.Do(req)
  defer res.Body.Close()
  body, _ := ioutil.ReadAll(res.Body)

  fmt.Println(res)
  fmt.Println(string(body))
}
import requests

url = "https://app.onlyfansapi.com/api/acct_XXXXXXXXXXXXXXX/tracking-links/1234567890/subscribers?limit=10"

response = requests.request("GET", url)

print(response.text)
import java.net.URI;
import java.net.http.HttpClient;
import java.net.http.HttpRequest;
import java.net.http.HttpResponse;
import java.net.http.HttpResponse.BodyHandlers;
import java.time.Duration;

HttpClient client = HttpClient.newBuilder()
  .connectTimeout(Duration.ofSeconds(10))
  .build();

HttpRequest.Builder requestBuilder = HttpRequest.newBuilder()
  .uri(URI.create("https://app.onlyfansapi.com/api/acct_XXXXXXXXXXXXXXX/tracking-links/1234567890/subscribers?limit=10"))
  .GET()
  .build();

try {
  HttpResponse<String> response = client.send(requestBuilder.build(), BodyHandlers.ofString());
  System.out.println("Status code: " + response.statusCode());
  System.out.println("Response body: " + response.body());
} catch (Exception e) {
  e.printStackTrace();
}
using System;
using System.Net.Http;
using System.Text;

var client = new HttpClient();
var response = await client.GetAsync("https://app.onlyfansapi.com/api/acct_XXXXXXXXXXXXXXX/tracking-links/1234567890/subscribers?limit=10");
var responseBody = await response.Content.ReadAsStringAsync();
{
  "data": {
    "list": [
      {
        "view": "s",
        "avatar": "https://example.com/avatar1.jpg",
        "avatarThumbs": {
          "c50": "https://example.com/avatar1_thumb50.jpg",
          "c144": "https://example.com/avatar1_thumb144.jpg"
        },
        "header": null,
        "headerSize": null,
        "headerThumbs": null,
        "id": 100000001,
        "name": "User1",
        "username": "user1",
        "canLookStory": false,
        "canCommentStory": false,
        "hasNotViewedStory": false,
        "isVerified": false,
        "canPayInternal": false,
        "hasScheduledStream": false,
        "hasStream": false,
        "hasStories": false,
        "tipsEnabled": false,
        "tipsTextEnabled": true,
        "tipsMin": 5,
        "tipsMinInternal": 1,
        "tipsMax": 200,
        "canEarn": false,
        "canAddSubscriber": false,
        "subscribePrice": 0,
        "displayName": "",
        "notice": "",
        "isRestricted": false,
        "canRestrict": true,
        "subscribedBy": false,
        "subscribedByExpire": null,
        "subscribedByExpireDate": null,
        "subscribedByAutoprolong": null,
        "subscribedIsExpiredNow": null,
        "currentSubscribePrice": null,
        "subscribedOn": true,
        "subscribedOnExpiredNow": false,
        "subscribedOnDuration": "",
        "lastSeen": null,
        "canReport": false
      },
      {
        "view": "s",
        "avatar": null,
        "avatarThumbs": null,
        "header": null,
        "headerSize": null,
        "headerThumbs": null,
        "id": 100000002,
        "name": "User2",
        "username": "user2",
        "canLookStory": false,
        "canCommentStory": false,
        "hasNotViewedStory": false,
        "isVerified": false,
        "canPayInternal": false,
        "hasScheduledStream": false,
        "hasStream": false,
        "hasStories": false,
        "tipsEnabled": false,
        "tipsTextEnabled": true,
        "tipsMin": 5,
        "tipsMinInternal": 1,
        "tipsMax": 200,
        "canEarn": false,
        "canAddSubscriber": false,
        "subscribePrice": 0,
        "displayName": "",
        "notice": "",
        "isRestricted": false,
        "canRestrict": true,
        "subscribedBy": false,
        "subscribedByExpire": null,
        "subscribedByExpireDate": null,
        "subscribedByAutoprolong": null,
        "subscribedIsExpiredNow": null,
        "currentSubscribePrice": null,
        "subscribedOn": true,
        "subscribedOnExpiredNow": false,
        "subscribedOnDuration": "",
        "lastSeen": "2025-02-10T19:35:01+00:00",
        "canReport": false
      },
      {
        "view": "s",
        "avatar": null,
        "avatarThumbs": null,
        "header": null,
        "headerSize": null,
        "headerThumbs": null,
        "id": 100000003,
        "name": "User3",
        "username": "user3",
        "canLookStory": false,
        "canCommentStory": false,
        "hasNotViewedStory": false,
        "isVerified": false,
        "canPayInternal": false,
        "hasScheduledStream": false,
        "hasStream": false,
        "hasStories": false,
        "tipsEnabled": false,
        "tipsTextEnabled": true,
        "tipsMin": 5,
        "tipsMinInternal": 1,
        "tipsMax": 200,
        "canEarn": false,
        "canAddSubscriber": false,
        "subscribePrice": 0,
        "displayName": "",
        "notice": "",
        "isRestricted": false,
        "canRestrict": true,
        "subscribedBy": false,
        "subscribedByExpire": null,
        "subscribedByExpireDate": null,
        "subscribedByAutoprolong": null,
        "subscribedIsExpiredNow": null,
        "currentSubscribePrice": null,
        "subscribedOn": true,
        "subscribedOnExpiredNow": false,
        "subscribedOnDuration": "1 day",
        "lastSeen": "2025-02-10T17:50:30+00:00",
        "canReport": false
      },
      {
        "view": "s",
        "avatar": null,
        "avatarThumbs": null,
        "header": null,
        "headerSize": null,
        "headerThumbs": null,
        "id": 100000004,
        "name": "User4",
        "username": "user4",
        "canLookStory": false,
        "canCommentStory": false,
        "hasNotViewedStory": false,
        "isVerified": false,
        "canPayInternal": false,
        "hasScheduledStream": false,
        "hasStream": false,
        "hasStories": false,
        "tipsEnabled": false,
        "tipsTextEnabled": true,
        "tipsMin": 5,
        "tipsMinInternal": 1,
        "tipsMax": 200,
        "canEarn": false,
        "canAddSubscriber": false,
        "subscribePrice": 0,
        "displayName": "",
        "notice": "",
        "isRestricted": false,
        "canRestrict": true,
        "subscribedBy": false,
        "subscribedByExpire": null,
        "subscribedByExpireDate": null,
        "subscribedByAutoprolong": null,
        "subscribedIsExpiredNow": null,
        "currentSubscribePrice": null,
        "subscribedOn": true,
        "subscribedOnExpiredNow": false,
        "subscribedOnDuration": "4 days",
        "lastSeen": null,
        "canReport": false
      },
      {
        "view": "s",
        "avatar": null,
        "avatarThumbs": null,
        "header": null,
        "headerSize": null,
        "headerThumbs": null,
        "id": 100000005,
        "name": "User5",
        "username": "user5",
        "canLookStory": false,
        "canCommentStory": false,
        "hasNotViewedStory": false,
        "isVerified": false,
        "canPayInternal": false,
        "hasScheduledStream": false,
        "hasStream": false,
        "hasStories": false,
        "tipsEnabled": false,
        "tipsTextEnabled": true,
        "tipsMin": 5,
        "tipsMinInternal": 1,
        "tipsMax": 200,
        "canEarn": false,
        "canAddSubscriber": false,
        "subscribePrice": 0,
        "displayName": "",
        "notice": "",
        "isRestricted": false,
        "canRestrict": true,
        "subscribedBy": false,
        "subscribedByExpire": null,
        "subscribedByExpireDate": null,
        "subscribedByAutoprolong": null,
        "subscribedIsExpiredNow": null,
        "currentSubscribePrice": null,
        "subscribedOn": true,
        "subscribedOnExpiredNow": false,
        "subscribedOnDuration": "4 days",
        "lastSeen": null,
        "canReport": false
      },
      {
        "view": "s",
        "avatar": null,
        "avatarThumbs": null,
        "header": null,
        "headerSize": null,
        "headerThumbs": null,
        "id": 100000006,
        "name": "User6",
        "username": "user6",
        "canLookStory": false,
        "canCommentStory": false,
        "hasNotViewedStory": false,
        "isVerified": false,
        "canPayInternal": false,
        "hasScheduledStream": false,
        "hasStream": false,
        "hasStories": false,
        "tipsEnabled": false,
        "tipsTextEnabled": true,
        "tipsMin": 5,
        "tipsMinInternal": 1,
        "tipsMax": 200,
        "canEarn": false,
        "canAddSubscriber": false,
        "subscribePrice": 0,
        "displayName": "",
        "notice": "",
        "isRestricted": false,
        "canRestrict": true,
        "subscribedBy": false,
        "subscribedByExpire": null,
        "subscribedByExpireDate": null,
        "subscribedByAutoprolong": null,
        "subscribedIsExpiredNow": null,
        "currentSubscribePrice": null,
        "subscribedOn": true,
        "subscribedOnExpiredNow": false,
        "subscribedOnDuration": "5 days",
        "lastSeen": "2025-02-11T07:21:17+00:00",
        "canReport": false
      },
      {
        "view": "s",
        "avatar": "",
        "avatarThumbs": null,
        "header": "",
        "headerSize": null,
        "headerThumbs": null,
        "id": 100000007,
        "name": "Deleted user",
        "username": "",
        "canLookStory": false,
        "canCommentStory": false,
        "hasNotViewedStory": false,
        "isVerified": false,
        "canPayInternal": false,
        "hasScheduledStream": false,
        "hasStream": false,
        "hasStories": false,
        "tipsEnabled": false,
        "tipsTextEnabled": true,
        "tipsMin": 0,
        "tipsMinInternal": 0,
        "tipsMax": 0,
        "canEarn": false,
        "canAddSubscriber": false,
        "subscribePrice": null,
        "isDeleted": true,
        "isRestricted": false,
        "canRestrict": true,
        "subscribedBy": false,
        "subscribedByExpire": null,
        "subscribedByExpireDate": null,
        "subscribedByAutoprolong": null,
        "subscribedIsExpiredNow": null,
        "currentSubscribePrice": null,
        "subscribedOn": null,
        "subscribedOnExpiredNow": null,
        "subscribedOnDuration": null,
        "lastSeen": "2025-02-06T04:22:08+00:00",
        "canReport": false
      },
      {
        "view": "s",
        "avatar": "https://example.com/avatar8.jpg",
        "avatarThumbs": {
          "c50": "https://example.com/avatar8_thumb50.jpg",
          "c144": "https://example.com/avatar8_thumb144.jpg"
        },
        "header": null,
        "headerSize": null,
        "headerThumbs": null,
        "id": 100000008,
        "name": "User8",
        "username": "user8",
        "canLookStory": false,
        "canCommentStory": false,
        "hasNotViewedStory": false,
        "isVerified": false,
        "canPayInternal": false,
        "hasScheduledStream": false,
        "hasStream": false,
        "hasStories": false,
        "tipsEnabled": false,
        "tipsTextEnabled": true,
        "tipsMin": 5,
        "tipsMinInternal": 1,
        "tipsMax": 200,
        "canEarn": false,
        "canAddSubscriber": false,
        "subscribePrice": 0,
        "displayName": "",
        "notice": "",
        "isRestricted": false,
        "canRestrict": true,
        "subscribedBy": false,
        "subscribedByExpire": null,
        "subscribedByExpireDate": null,
        "subscribedByAutoprolong": null,
        "subscribedIsExpiredNow": null,
        "currentSubscribePrice": null,
        "subscribedOn": true,
        "subscribedOnExpiredNow": false,
        "subscribedOnDuration": "6 days",
        "lastSeen": "2025-02-07T18:57:15+00:00",
        "canReport": false
      },
      {
        "view": "s",
        "avatar": null,
        "avatarThumbs": null,
        "header": null,
        "headerSize": null,
        "headerThumbs": null,
        "id": 100000009,
        "name": "User9",
        "username": "user9",
        "canLookStory": false,
        "canCommentStory": false,
        "hasNotViewedStory": false,
        "isVerified": false,
        "canPayInternal": false,
        "hasScheduledStream": false,
        "hasStream": false,
        "hasStories": false,
        "tipsEnabled": false,
        "tipsTextEnabled": true,
        "tipsMin": 5,
        "tipsMinInternal": 1,
        "tipsMax": 200,
        "canEarn": false,
        "canAddSubscriber": false,
        "subscribePrice": 0,
        "displayName": "",
        "notice": "",
        "isRestricted": false,
        "canRestrict": true,
        "subscribedBy": false,
        "subscribedByExpire": null,
        "subscribedByExpireDate": null,
        "subscribedByAutoprolong": null,
        "subscribedIsExpiredNow": null,
        "currentSubscribePrice": null,
        "subscribedOn": true,
        "subscribedOnExpiredNow": false,
        "subscribedOnDuration": "9 days",
        "lastSeen": null,
        "canReport": false
      },
      {
        "view": "s",
        "avatar": "https://example.com/avatar10.jpg",
        "avatarThumbs": {
          "c50": "https://example.com/avatar10_thumb50.jpg",
          "c144": "https://example.com/avatar10_thumb144.jpg"
        },
        "header": null,
        "headerSize": null,
        "headerThumbs": null,
        "id": 100000010,
        "name": "User10",
        "username": "user10",
        "canLookStory": false,
        "canCommentStory": false,
        "hasNotViewedStory": false,
        "isVerified": false,
        "canPayInternal": false,
        "hasScheduledStream": false,
        "hasStream": false,
        "hasStories": false,
        "tipsEnabled": false,
        "tipsTextEnabled": true,
        "tipsMin": 5,
        "tipsMinInternal": 1,
        "tipsMax": 200,
        "canEarn": false,
        "canAddSubscriber": false,
        "subscribePrice": 0,
        "displayName": "",
        "notice": "",
        "isRestricted": false,
        "canRestrict": true,
        "subscribedBy": false,
        "subscribedByExpire": null,
        "subscribedByExpireDate": null,
        "subscribedByAutoprolong": null,
        "subscribedIsExpiredNow": null,
        "currentSubscribePrice": null,
        "subscribedOn": true,
        "subscribedOnExpiredNow": false,
        "subscribedOnDuration": "17 days",
        "lastSeen": "2025-01-25T03:45:20+00:00",
        "canReport": false
      }
    ],
    "marker": 1739279385,
    "hasMore": false
  },
  "_meta": {
    "_credits": {
      "used": 1,
      "balance": 9990,
      "note": "Always"
    },
    "_cache": {
      "is_cached": false,
      "note": "Cache disabled for this endpoint"
    },
    "_rate_limits": {
      "limit_minute": 1000,
      "limit_day": 50000,
      "remaining_minute": 999,
      "remaining_day": 49998
    }
  }
}