Page cover image

FYP (For You Page)

Fetch videos trending on the for you page

GENERAL ENDPOINT

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,
}
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);

Last updated