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
}
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);

Last updated