Skip to content

TikTok User Profile Info

This API provides retrieves real-time public profile information from TikTok accounts. It provides follower counts, bios, profile pictures, and engagement stats.

POST /api/v1/tiktok-info

The following parameters are accepted in the request body:

FieldTypeRequiredDescription
usernamestringYesThe TikTok username.

Choose your preferred method to interact with the TikTok Info API:

Terminal window
curl -X POST https://heavstal.com.ng/api/v1/tiktok-info \
-H "Content-Type: application/json" \
-H "x-api-key: <YOUR_API_KEY>" \
-d '{"username": "khaby.lame"}'
{
"status": "success",
"code": 200,
"creator": "HEAVSTAL TECH",
"data": {
"name": "Khaby Lame",
"username": "khaby.lame",
"followers": 161900000,
"following": 78,
"description": "If you want to laugh you are in the right place",
"profile_picture": "https://p16-sign-va.tiktokcdn.com/..."
}
}