See who a TikTok account follows. Pass the secUid from a profile lookup and the endpoint returns the user list that account subscribes to, together with a total and a hasMore flag. Paging is driven by the minCursor and maxCursor values echoed back in every response, which lets you walk a long following list forward without losing your place between calls.
curl -X GET "https://api.primeapi.co/user-following?secUid=MS4wLjABAAAAY3pcRUgWNZAUWlErRzIyrWoc1cMUIdws4KMQQAS5aKN9AD1lcmx5IvCXMUJrP2dB&count=50&minCursor=0&maxCursor=0" \
-H "X-PrimeAPI-Key: YOUR_API_KEY"
import requests
url = "https://api.primeapi.co/user-following?secUid=MS4wLjABAAAAY3pcRUgWNZAUWlErRzIyrWoc1cMUIdws4KMQQAS5aKN9AD1lcmx5IvCXMUJrP2dB&count=50&minCursor=0&maxCursor=0"
headers = {"X-PrimeAPI-Key": "YOUR_API_KEY"}
response = requests.get(url, headers=headers)
print(response.json())
print("Credits left:", response.headers.get("X-PrimeAPI-Balance"))
{
"extra": {
"fatal_item_ids": [],
"logid": "2025011700342251917E38EFF46F16B737",
"now": 1737074063000
},
"hasMore": true,
"log_pb": {
"impr_id": "2025011700342251917E38EFF46F16B737"
},
"maxCursor": 0,
"minCursor": 1717151455,
"statusCode": 0,
"status_code": 0,
"status_msg": "",
"total": 62,
"userList": [
{
"stats": {
"diggCount": 2003,
"followerCount": 701000,
"followingCount": 46,
"friendCount": 0,
"heart": 19500000,
"heartCount": 19500000,
"videoCount": 1106
},
"user": {
"avatarLarger": "https://p16-sign-va.tiktokcdn.com/tos-maliva-avt-0068/844f6af0f01d3cef897b8b6f02175452~c5_1080x1080.jpeg?lk3s=a5d48078&nonce=79635&refresh_token=c851196c0b86e4f9af7795480917c1dd&x-expires=1737244800&x-signature=cwcsObH4HndEP3dueVyQ%2BetHufk%3D&shp=a5d48078&shcp=81f88b70",
"avatarMedium": "https://p16-sign-va.tiktokcdn.com/tos-maliva-avt-0068/844f6af0f01d3cef897b8b6f02175452~c5_720x720.jpeg?lk3s=a5d48078&nonce=34737&refresh_token=3e235ef42826e39d4b396db03a1cae61&x-expires=1737244800&x-signature=cn6oSrBtHE5FgNFwYoqSzpB9nPo%3D&shp=a5d48078&shcp=81f88b70",
"avatarThumb": "https://p16-sign-va.tiktokcdn.com/tos-maliva-avt-0068/844f6af0f01d3cef897b8b6f02175452~c5_100x100.jpeg?lk3s=a5d48078&nonce=82610&refresh_token=ef153f2c20fe0a6862ee9eed20094d3e&x-expires=1737244800&x-signature=bO2cegJaOhJnDd8go4eZKpbkGz0%3D&shp=a5d48078&shcp=81f88b70",
"commentSetting": 0,
"downloadSetting": 0,
"duetSetting": 0,
"ftc": false,
"id": "7047784953836733445",
"isADVirtual": false,
"nickname": "EyeGameUwatch",
"openFavorite": false,
"privateAccount": false,
"relation": 0,
"secUid": "MS4wLjABAAAAVMfbJrJ2XCPhtXvNAzuo027OoUY3TaHx3XSwQGDPGK9000GMz7uVTlg3wLbBQAF7",
"secret": false,
"signature": "My only account!!!\nBusiness only :Eyegameuwatch@gmail.com\nLive : M-F 7pm ET \u2b07\ufe0f",
"stitchSetting": 0,
"ttSeller": false,
"uniqueId": "eyegameuwatch",
"verified": false
}
},
{
"stats": {
... (truncated)