User Story
Fetch the story off a user
PREMIUM ENDPOINT
Gets the story a user has posted
GET
https://kitkot.xyz/api/get_user/story
Returns the stories that the user_id(s)
have posted on their page
Query Parameters
Name
Type
Description
api_key*
String
The api_key
you got when purchasing our service
user_id*
String
The user_ids
of the users to get the story from, this can be multiple users. To fetch multiple stories seperate the user_id
by commas:
userid1,userid2,userid3
session_key*
String
The session_key
you got from our login endpoint
{
code: 200,
msg: 'success',
stories: [
{
anchors: null,
aweme_id: '',
aweme_type: ,
branded_content_accounts: null,
cha_list: null,
challenge_position: null,
commerce_config_data: null,
content_desc_extra: null,
cover_labels: null,
geofencing: null,
geofencing_regions: null,
green_screen_materials: null,
hybrid_label: null,
image_infos: null,
interaction_stickers: null,
label_top_text: null,
long_video: null,
mask_infos: null,
nickname_position: null,
origin_comment_ids: null,
position: null,
products_info: null,
question_list: null,
search_highlight: null,
text_extra: null,
uniqid_position: null,
user_story: [Object],
video_labels: null,
video_text: null
}
]
}
const fetch = require('node-fetch');
const BASEURL = "https://kitkot.xyz/api";
const API_KEY = "my-api-key";
const user_id = "86888400535834624";
const request = await fetch(`${BASEURL}/get_user/story?api_key=${API_KEY}&user_id=${user_id}`);
const response = await request.json();
console.log(response);
Last updated