Session

Fetch the information about a session

PREMIUM ENDPOINT

Fetch the information about a session_key

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

Fetch a tiktok session by a session_key returned from our login endpoint

Query Parameters

Name
Type
Description

api_key*

String

The api_key you got when purchasing our service

session_key*

String

The session_key returned by our server

{
  code: 200,
  msg: 'success',
  region: '',
  email: '',
  screen_name: '',
  phone: '',
  is_verified: false,
  user_id: '',
  sec_user_id: '',
  profile_picture: '',
  session_key: '',
  need_device_create: {
    code: 0,
    msg: ''
  },
  is_new_user: 0,
  cloud_token: '',
  connects: []
}
const fetch = require('node-fetch');

const BASEURL = "https://kitkot.xyz/api";
const API_KEY = "my-api-key";
const SESSION_KEY = "my-session-key";

const request = await fetch(`${BASEURL}/session?api_key=${API_KEY}&session_key=${SESSION_KEY}`);
const response = await request.json();
console.log(response);

Last updated