Video Comment Replies
Fetch the replies to a comment on a video
GENERAL ENDPOINT
Get the replies off a comment
GET https://kitkot.xyz/api/video/comments/replies
Returns the replies made under a comment
Query Parameters
Name
Type
Description
api_key*
String
The api_key you got when purchasing our service
comment_id*
String
The comment_id of the comment to fetch replies from
session_key
String
The session_key you got from our login endpoint
count
String
The amount of replies to fetch
cursor
String
The cursor returned from your previous request to fetch the next page of replies
{
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