Shoti API sends random beautiful, cute, and hot girl thirst-trap videos & images from TikTok, with a collection of over 350+ shoti's.
To use Shoti API you must install this package.
# for nodejs
npm install shoti
# for python
pip install shoti
Using Shoti API JavaScript wrapper:
import Shoti from 'shoti';
/* Initialize with API key */
const shoti = new Shoti("YOUR-APIKEY"); //$shoti-xxxx
/* Fetch data (image or video) */
const data = await shoti.getShoti({ type: "image|video" });
/* Print the result */
console.log("Shoti Result:", data);
Using Shoti API Python wrapper:
from shoti import Shoti
# Initialize with API key
shoti = Shoti("YOUR-APIKEY") # $shoti-xxxx
# Fetch data (image or video)
data = shoti.get_shoti(type="image|video")
# Print the result
print("Shoti Result:", data)
Shoti API response output:
{
"code": number,
"result": {
"content": string | Array[string,...], //If the type is video, this will be string, else it will be array of string's.
"duration": string,
"region": string, //ISO 3166-1
"title": string,
"type": "video" | "image",
"user": {
"signature": string,
"instagram": string,
"twitter": string,
"nickname": string,
"username": string
}
}
}
That's all the basics for getting videos or images from Shoti API. For more detailed documentation please read here.
Thanks to all of this people's for contributing to the project Shoti API.