Video Comment Replies
Fetch the replies to a comment on a video
Get the replies off a comment
Query Parameters
Name
Type
Description
{
code: 200,
replies: [Object, Object, Object],
nextCursor: 3,
has_more: 1,
total_replies: 6
}{
code: 400,
msg: "Invalid parameters"
}const fetch = require('node-fetch');
const BASEURL = "https://kitkot.xyz/api";
const API_KEY = "my-api-key";
const comment_id = "7156349305510773510";
const count = "3";
const request = await fetch(`${BASEURL}/video/comments/replies?api_key=${API_KEY}&comment_id=${comment_id}&count=${count}`);
const response = await request.json();
console.log(response);import requests
BASEURL = "https://kitkot.xyz/api"
API_KEY = "my-api-key"
comment_id = "7156349305510773510";
count = "3";
request = requests.get(f"{BASEURL}/video/comments/replies?api_key={API_KEY}&comment_id={comment_id}&count={count}")
response = request.json()
print(response)Last updated