Unlike Comment

Unlikes a comment liked by you

PREMIUM ENDPOINT

Unlikes a comment that was liked by you

GET https://kitkot.xyz/api/video/comments/unlike

Unlikes 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 unlike

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: 'unlike_comment',
    msg: 'success'
}
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/unlike?api_key=${API_KEY}&session_key=${session_key}&aweme_id=${aweme_id}&cid=${cid}`);
const response = await request.json();
console.log(response);

Last updated