Welcome to the Yaseen Team API for TikTok data scraping.
The base URL for all requests is:
https://api.yaseenteam.com/tiktok_api.php
No authentication is required for this API (for now). Make sure to use responsibly.
Retrieve the followers count for a TikTok username.
Request:
GET /tiktok_api.php?type=followers&input={username}
Parameters:
type (required): Must be followers.input (required): TikTok username (e.g., username).Example:
GET https://api.yaseenteam.com/tiktok_api.php?type=followers&input=username
Response:
{
"followers": "123456"
}
Retrieve the number of likes for a specific TikTok post.
Request:
GET /tiktok_api.php?type=post_likes&input={post_url}
Parameters:
type (required): Must be post_likes.input (required): Full TikTok post URL (e.g., https://www.tiktok.com/@username/video/1234567890).Example:
GET https://api.yaseenteam.com/tiktok_api.php?type=post_likes&input=https://www.tiktok.com/@username/video/1234567890
Response:
{
"post_likes": "7890"
}
Retrieve the number of comments for a specific TikTok post.
Request:
GET /tiktok_api.php?type=post_comments&input={post_url}
Parameters:
type (required): Must be post_comments.input (required): Full TikTok post URL (e.g., https://www.tiktok.com/@username/video/1234567890).Example:
GET https://api.yaseenteam.com/tiktok_api.php?type=post_comments&input=https://www.tiktok.com/@username/video/1234567890
Response:
{
"post_comments": "7890"
}
Retrieve the number of views for a specific TikTok post.
Request:
GET /tiktok_api.php?type=post_views&input={post_url}
Parameters:
type (required): Must be post_views.input (required): Full TikTok post URL (e.g., https://www.tiktok.com/@username/video/1234567890).Example:
GET https://api.yaseenteam.com/tiktok_api.php?type=post_views&input=https://www.tiktok.com/@username/video/1234567890
Response:
{
"post_views": "56789"
}
All responses are returned in JSON format. If an error occurs, the API will return an error message:
{
"error": "Error message here"
}
For questions or support, please contact support@yaseenteam.com.