Account Inbox
Fetches your accounts inbox
PREMIUM ENDPOINT
Fetch the inbox of your tiktok account
GET
https://kitkot.xyz/api/profile/inbox
Returns your accounts inbox
Query Parameters
Name
Type
Description
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',
data: {
follow_request: { count: 0, from_users: [] },
live_message: [],
report_inbox: null,
show_following_popup: false,
tiktok_shop_inbox: null,
top_live: { avatar_list: [], enable: false }
}
}
const BASEURL = "https://kitkot.xyz/api";
const API_KEY = "my-api-key";
const session_key = "my-session-key"
const request = await fetch(`${BASEURL}/profile/inbox?api_key=${API_KEY}&session_key=${session_key}`);
const response = await request.json();
console.log(response);
Last updated