Edit Profile
Edits your current tiktok profile
PREMIUM ENDPOINT
Edit the profile of your current session
GET https://kitkot.xyz/api/profile/edit
Edits your tiktok profile 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
signature
String
The signature to update to
unique_id
String
The unique_id to update to
nickname
String
The nickname to update to
bio_url
String
The bio_url to update to
{
code: 200,
updated_user: {
short_id: '0',
nickname: '',
avatar_larger: {
uri: '',
url_list: [Array]
},
avatar_medium: {
uri: '',
url_list: [Array]
},
secret: 0,
twitter_id: '',
apple_account: 0,
video_icon_virtual_URI: '',
uid: '',
verification_type: 0,
youtube_channel_title: '',
avatar_thumb: {
uri: '',
url_list: [Array]
},
unique_id: '',
share_qrcode_uri: '',
google_account: '',
twitter_name: '',
signature: '',
ins_id: '',
youtube_channel_id: '',
navi_id: '',
avatar_uri: ''
}
}{
msg: 'Unable to update the profile description, please try again.',
code: 400
}{
msg: 'This username has been taken. Please try a different one.',
code: 400
}const BASEURL = "https://kitkot.xyz/api";
const API_KEY = "my-api-key";
const session_key = "my-session-key";
const signature = "my new signature";
const unique_id = "mynewUsername";
const bio_url = "https://kitkot.io";
const nickname = "mynewNickname";
const request = await fetch(`${BASEURL}/profile/edit?api_key=${API_KEY}&session_key=${session_key}&signature=${signature}&bio_url=${bio_url}&nickname=${nickname}&unique_id=${unique_id}`);
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"
signature = "my new signature"
unique_id = "mynewUsername"
bio_url = "https://kitkot.io"
nickname = "mynewNickname"
request = requests.get(f"{BASEURL}/profile/edit?api_key={API_KEY}&session_key={session_key}&signature={signature}&bio_url={bio_url}&nickname={nickname}&unique_id={unique_id}")
response = request.json()
print(response)Last updated