Unlike Video
Unlikes a video previously liked with your account
PREMIUM ENDPOINT
Unlikes a video by the aweme_id
GET
https://kitkot.xyz/api/video/unlike
Unlikes a video posted by somebody else by the aweme_id
of the video with your session_key
Query Parameters
Name
Type
Description
api_key*
String
The api_key
you got when purchasing our service
aweme_id*
String
The aweme_id
of the video to unlike
session_key*
String
The session_key
you got from our login endpoint
{
code: 200,
msg: 'success',
action: 'unlike'
}
const BASEURL = "https://kitkot.xyz/api";
const API_KEY = "my-api-key";
const session_key = "my-session-key";
const aweme_id = "some-aweme_id";
const request = await fetch(`${BASEURL}/video/unlike?api_key=${API_KEY}&session_key=${session_key}&aweme_id=${aweme_id}`);
const response = await request.json();
console.log(response);
Last updated