Like Video
Likes a video with your account
PREMIUM ENDPOINT
Likes a video by the aweme_id
GET
https://kitkot.xyz/api/video/like
Likes 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 like
session_key*
String
The session_key
you got from our login endpoint
{
code: 200,
msg: 'success',
action: 'like'
}
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/like?api_key=${API_KEY}&session_key=${session_key}&aweme_id=${aweme_id}`);
const response = await request.json();
console.log(response);
Last updated