Login

Login with your TikTok account

PREMIUM ENDPOINT

Returns a session_key to interact with tiktok

GET https://kitkot.xyz/api/login

Returns a session_key which is needed to use any of our account endpoints.

Query Parameters

Name
Type
Description

username

String

The username of the account to login to

password*

String

The password of the account to login to

api_key*

String

The api_key you got when purchasing our service

email

String

The email of the account to login to

{
  "code": 200,
  "session_key": "THWgf20JmQKiCT7FD_4s5_Nj1V2TZq9L",
  "msg": "Session will be active in 60 seconds, do not use this session key before that."
}
const fetch = require('node-fetch');

const BASEURL = "https://kitkot.xyz/api";
const API_KEY = "my-api-key";
const username = "kitkot";
const password = "KitKot123!";

const request = await fetch(`${BASEURL}/login?api_key=${API_KEY}&username=${username}&password=${password}`);
const response = await request.json();
console.log(response);

Last updated