Like Comment
Likes a comment on a video
PREMIUM ENDPOINT
Likes a comment made on a video
GET https://kitkot.xyz/api/video/comments/like
Likes a comment made on a video with specified session_key
Query Parameters
Name
Type
Description
api_key*
String
The api_key you got when purchasing our service
cid*
String
The cid of the comment to like
aweme_id*
String
The aweme_id of the video where the comment is posted on
session_key*
String
The session_key you got from our login endpoint
{
code: 200,
action: 'like_comment',
msg: 'success'
}{
code: 400,
msg: 'Invalid parameters'
}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 cid = "commentid";
const request = await fetch(`${BASEURL}/video/comments/like?api_key=${API_KEY}&session_key=${session_key}&aweme_id=${aweme_id}&cid=${cid}`);
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"
aweme_id = "some-aweme_id"
cid = "commentid"
request = requests.get(f"{BASEURL}/video/comments/like?api_key={API_KEY}&session_key={session_key}&aweme_id={aweme_id}&cid={cid}")
response = request.json()
print(response)Last updated