FYP (For You Page)
Fetch videos trending on the for you page
GENERAL ENDPOINT
Get videos trending on the for you page
GET https://kitkot.xyz/api/get_user/feed
Returns x amount of videos trending on the for you page
Query Parameters
Name
Type
Description
api_key*
String
The api_key you got when purchasing our service
session_key
String
The session_key you got from our login endpoint. This can be useful if you want to fetch videos trending in the region where your account was registered in.
count*
String
The amount of videos to fetch
{
code: 200,
aweme_list: [Object, Object, Object, Object, Object, Object],
has_more: 0,
min_cursor: 0,
max_cursor: 0,
}{
'code': 400,
'msg': 'Failed to get FYP'
}const fetch = require('node-fetch');
const BASEURL = "https://kitkot.xyz/api";
const API_KEY = "my-api-key";
const count = "6";
const request = await fetch(`${BASEURL}/get_user/feed?api_key=${API_KEY}&count=${count}`);
const response = await request.json();
console.log(response);import requests
BASEURL = "https://kitkot.xyz/api"
API_KEY = "my-api-key"
count = "6"
request = requests.get(f"{BASEURL}/get_user/feed?api_key={API_KEY}&count={count}")
response = request.json()
print(response)Last updated
