Unfollow
Unfollow another user
Unfollows another user on tiktok
Query Parameters
Name
Type
Description
{
'code': 200,
'msg': 'success',
'follow_status': 0,
'follower_status': 1
}{
'code': 400,
'msg': 'Your account is currently shadowbanned.'
}const BASEURL = "https://kitkot.xyz/api";
const API_KEY = "my-api-key";
const session_key = "my-session-key";
const sec_user_id = "some-sec-user-id";
const request = await fetch(`${BASEURL}/profile/unfollow?api_key=${API_KEY}&sec_user_id=${sec_user_id}&session_key=${session_key}`);
const response = await request.json();
console.log(response);import requests
BASEURL = "https://kitkot.xyz/api"
API_KEY = "my-api-key"
session_key = "my-session-key"
sec_user_id = "some-sec-user-id"
request = requests.get(f"{BASEURL}/profile/unfollow?api_key={API_KEY}&sec_user_id={sec_user_id}&session_key={session_key}")
response = request.json()
print(response)Last updated