List Stored Tracking Links
List all stored tracking links from the OnlyFansAPI Cache. This is a free endpoint that does not call the OnlyFans API.
Query parameters
The number of tracking links to return. Default 10
The number of tracking links to return. Default 10
The offset used for pagination. Default 0
The offset used for pagination. Default 0
Include tracking links created by Smart Links. Default false
Include tracking links created by Smart Links. Default false
Search campaign name, creator username, or a pasted OnlyFans tracking link URL.
Search campaign name, creator username, or a pasted OnlyFans tracking link URL.
Filter by one or more tag names or slugs. Accepts CSV or repeated array values (filter[tags][]=...) and matches any tag.
Filter by one or more tag names or slugs. Accepts CSV or repeated array values (filter[tags][]=...) and matches any tag.
Request body
Example request
{
"limit": 1,
"offset": 76,
"filter": {
"search": "mg",
"tags": [
"lbjo"
]
}
}Response
Success
Example response
{
"data": {
"list": [
{
"id": 123456,
"campaignCode": 123,
"campaignName": "Example Campaign - IG Bio SFS",
"campaignUrl": "https://onlyfans.com/USERNAME/c123",
"subscribersCount": 10,
"clicksCount": 100,
"createdAt": "2025-01-01T00:00:00+00:00",
"endDate": null,
"tags": [
"Instagram",
"Twitter"
],
"revenue": {
"total": 20,
"revenuePerSubscriber": 2,
"revenuePerClick": 0.2,
"spendersCount": 1,
"calculatedAt": "2025-01-01T00:00:00+00:00",
"isLoading": false
},
"cost": {
"inputMode": null,
"inputValue": null,
"perSub": null,
"perClick": null,
"perPromo": null,
"subscriberSourceCount": 10,
"clickSourceCount": 100
},
"links": {
"related": {
"subscribers": "https://app.onlyfansapi.com/api/acct_XXXXXXX/tracking-links/123456/subscribers",
"spenders": "https://app.onlyfansapi.com/api/acct_XXXXXXX/tracking-links/123456/spenders"
}
}
}
],
"hasMore": true
},
"_pagination": {
"next_page": "https://app.onlyfansapi.com/api/acct_XXXXXXXXXXX/stored/tracking-links?offset=10&limit=10"
},
"_meta": {
"_credits": {
"used": 0,
"balance": 9529,
"note": "Free endpoint"
},
"_cache": {
"is_cached": false,
"note": "Cache disabled for this endpoint"
},
"_rate_limits": {
"limit_minute": 1000,
"limit_day": 50000,
"remaining_minute": 999,
"remaining_day": 49999
}
}
}