Unofficial TikTok Unfollow API
GET/api/v1/del_following
Bulk-unfollow accounts from your own account, using your own session. Note: each account is removed by blocking it.
| Parameter | Description | |
|---|---|---|
session_id | required | Your own TikTok sessionid (from your account cookies). The action runs on THIS account. |
count | required | How many followed accounts to remove (e.g. 50, 100, 1000). Removal uses block, which also blocks each account. |
Returns
user_id, removed (how many were removed/blocked), and failed.
Example Request
https://dev.omar-thing.site/api/v1/del_following?session_id=%3Cyour_sessionid%3E&count=100&key=YOUR_API_KEY
Example Response
{
"data": {
"failed": 1,
"removed": 100,
"user_id": "6700000000000000000"
},
"status": "success"
}Sends a live request using your API key above.
More Account Actions endpoints
- Unofficial TikTok Delete Reposts API — Bulk-delete your own most recent reposts, using your own session.