Search TikTok users by keyword. Returns username, nickname, bio, follower/following counts, total likes, video count, and verification status. Supports fetching multiple pages of results in a single API call.
curl "https://apidirect.io/v1/tiktok/users?query=cooking&pages=1" \
-H "X-API-Key: YOUR_API_KEY"
{
"users": [
{
"username": "cookingwithshereen",
"nickname": "Shereen Pavlides",
"user_id": "6812601268610257926",
"bio": "Chef | Author | TV Host",
"verified": true,
"is_private": false,
"followers": 483313,
"following": 47,
"likes": 3090163,
"video_count": 728,
"avatar": "https://p16-sign.tiktokcdn-us.com/.../photo.webp",
"url": "https://www.tiktok.com/@cookingwithshereen"
}
],
"pages": 1,
"count": 30
}