Account Information
Fetch information about your account
PREMIUM ENDPOINT
Fetch information about your tiktok account
GET
https://kitkot.xyz/api/get_me
Returns information about your tiktok account using the session_key
you provide
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",
me: {
avatar_168x168: {
uri: '',
url_list: [Array]
},
complete_profile_guide_strategy: 1,
is_discipline_member: false,
latest_order_time: 0,
share_info: {
share_desc: '',
share_title_myself: '',
share_image_url: [Object],
bool_persist: 1,
share_desc_info: '',
share_url: '',
share_title_other: '',
now_invitation_card_image_urls: null,
share_title: "Join TikTok and see what I've been up to!"
},
shield_comment_notice: 0,
account_region: '',
user_inactive: false,
youtube_refresh_token: '',
room_id: 0,
profile_tab_type: 0,
follower_count: 121,
unique_id_modify_time: 0,
comment_setting: 0,
shield_digg_notice: 0,
notify_minor_private_policy: false,
with_item_commerce_entry: false,
live_commerce: false,
friend_count: 0,
bold_fields: [ 'photo' ],
hide_search: false,
age_gate_action: 0,
is_pro_account: false,
sec_uid: '',
social_data: {
enable_permission_pop_up: true,
social_platform_settings: [Array]
},
has_email: true,
youtube_channel_id: '',
avatar_thumb: {
uri: '',
url_list: [Array]
},
following_count: 2,
history_max_follower_count: 121,
video_gift_status: 0,
user_canceled: false,
commerce_user_info: {
has_tcm_entry: false,
ads_feedback_entry: true,
ad_authorization: false,
has_promote: true,
clf_type: 0,
ad_revenue_rits: null,
has_branded_content_tool: true,
ad_experience_text: 'Ads',
ad_experience_entry: true,
tcm_config: '{"bc_usage_confirm_threshold":{"app":false,"h5":false}}'
},
twitter_name: '',
unique_id: '',
signature: '',
has_insights: false,
category: '',
is_effect_artist: false,
mplatform_followers_count: 0,
uid: '',
user_profile_guide: [ [Object], [Object], [Object], [Object], [Object], [Object] ],
aweme_count: 0,
custom_verify: '',
favoriting_count: 0,
accept_private_policy: false,
with_new_goods: false,
total_favorited: 0,
new_follow_to_reaction_count: 0,
twitter_id: '',
youtube_last_refresh_time: 0,
youtube_channel_title: '',
bio_permission: {
enable_phone: false,
enable_location: false,
enable_url: false,
enable_email: false
},
ins_id: '',
avatar_300x300: {
uri: '',
url_list: [Array]
},
new_follower_count: 0,
with_commerce_enterprise_tab_entry: false,
bind_phone: '',
video_icon: { uri: '', url_list: [] },
forward_count: 0,
proaccount_update_notification_status: 0,
content_language_already_popup: 0,
commerce_user_level: 0,
analytics_status: false,
apple_account: 0,
has_twitter_token: false,
avatar_larger: {
uri: '',
url_list: [Array]
},
nickname: '',
music_tab_info: { show_ghost_music_tab: false },
predicted_age_group: '-1',
is_phone_binded: false,
special_account: { special_account_list: [] },
follower_status: 0,
email: '',
viewer_entrance_info: {
can_show_entrance: true,
unread_viewer_count: 0,
viewer_count: 0
},
account_type: 0,
contacts_sync_status: false,
short_id: '0',
verification_type: 0,
qa_status: 0,
follow_status: 0,
enterprise_verify_reason: '',
register_time: 1667504852,
yt_raw_token: '',
download_setting: 0,
google_account: '',
commerce_permissions: {},
tt_mall_tab_related_user_info: { ttmall_tab_display: true },
tw_expire_time: 0,
can_set_geofencing: false,
is_star: false,
verify_info: '',
age_gate_info: {
option_list: null,
age_gate_buttons: null,
age_gate_content_hyperlinks: null
},
tab_settings: { private_tab: [Object] },
avatar_medium: {
uri: '',
url_list: [Array]
},
is_email_verified: true,
story_status: 0,
dsp_profile: { collect_count: 0 },
shield_follow_notice: 0,
login_platform: 0,
post_default_download_setting: true,
age_gate_post_action: 0,
supporting_ngo: {},
secret: 0,
with_commerce_entry: false,
user_rate: 1,
user_mode: 1,
original_musician: { music_used_count: 0, digg_count: 0, music_count: 0 },
pronouns_info: { enable_edit_pronouns: true }
}
}
{
'code': 400,
'msg': "Login Expired"
}
const BASEURL = "https://kitkot.xyz/api";
const API_KEY = "my-api-key";
const session_key = "my-session-key"
const request = await fetch(`${BASEURL}/get_me?api_key=${API_KEY}&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"
request = requests.get(f"{BASEURL}/get_me?api_key={API_KEY}&session_key={session_key}")
response = request.json()
print(response)
Last updated