Follow
Follow another user
PREMIUM ENDPOINT
Follows another user on tiktok
GET https://kitkot.xyz/api/profile/follow
Follows another user using the session_keyyou specify
Query Parameters
Name
Type
Description
sec_user_id*
String
The sec_user_id of the user to follow
api_key*
String
The api_key you got when purchasing our service
session_key*
String
The session_key you got from our login endpoint
{
'code': 200,
'msg': 'success',
'follow_status': 1
}{
'code': 400,
'msg': 'Your account is currently shadowbanned.'
}{
'code': 200,
'msg': 'User is private, you will have to wait for them to accept your follow request',
'follow_status': 4
}{
'code': 400,
'msg': 'You cant follow urself'
}const fetch = require('node-fetch');
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/follow?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/follow?api_key={API_KEY}&sec_user_id={sec_user_id}&session_key={session_key}")
response = request.json()
print(response)Last updated