POST https://api.i-as.dev/api/tiktok/search
The request body should contain a JSON object with the following structure:
{
"keywords": "your_query"
}
POST https://api.i-as.dev/api/tiktok/user-feed
The request body should contain a JSON object with the following structure:
{
"username": "@username"
}
POST https://api.i-as.dev/api/tiktok/trending-feed
The request body should contain a JSON object with the following structure:
{
"region": "id_country"
}
POST https://api.i-as.dev/api/tiktok/video
The request body should contain a JSON object with the following structure:
{
"url": "url_video"
}
1
if you want to get a web-compatible video format.1
if you want to get a high-definition version of the video.POST https://api.i-as.dev/api/tiktok/search
Body:
{
"keywords": "funny cat videos"
}
POST https://api.i-as.dev/api/tiktok/user-feed
Body:
{
"username": "@john_doe"
}
POST https://api.i-as.dev/api/tiktok/trending-feed
Body:
{
"region": "id"
}
POST https://api.i-as.dev/api/tiktok/video
Body:
{
"url": "https://www.tiktok.com/@username/video/1234567890123456789"
}
This API allows you to interact with TikTok content by searching videos, retrieving user feeds, getting trending videos in specific regions, and fetching details of a TikTok video using its URL.