Unfollow
Unfollow another user
PREMIUM ENDPOINT
Unfollows another user on tiktok
GET
https://kitkot.xyz/api/profile/unfollow
Unfollows another user using the session_key
you specify
Query Parameters
Name
Type
Description
api_key*
String
The api_key
you got when purchasing our service
sec_user_id*
String
The sec_user_id
of the user to unfollow
session_key*
String
The session_key
you got from our login endpoint
{
'code': 200,
'msg': 'success',
'follow_status': 0,
'follower_status': 1
}
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);
Last updated