GET
/tiktok/search/usersSearch Users
Search for TikTok users by keyword. Returns matching profiles with follower counts and verification status.
Quick Start
cURL
curl "https://api.creatorcrawl.com/v1/tiktok/search/users?keyword=fitness%20coach" \
-H "x-api-key: YOUR_API_KEY"Parameters
| Name | Type | Required | Description |
|---|---|---|---|
keyword | string | Required | Search keyword or phrase |
cursor | string | Optional | Pagination cursor |
Response
JSON Response
{
"users": [
{
"uniqueId": "fitnesscoach1",
"nickname": "Coach Mike",
"followerCount": 250000,
"verified": false
}
],
"cursor": "10",
"hasMore": true
}Every request costs 1 credit. Response data is live -- never cached.
Use Cases
Influencer discovery
Find creators in any niche by searching for relevant keywords.
Market research
Understand the creator landscape in a specific category or industry.
Lead generation
Find potential clients or partners based on their TikTok presence.
Code Examples
Python
import requests
resp = requests.get(
"https://api.creatorcrawl.com/v1/tiktok/search/users",
params={"keyword": "fitness coach"},
headers={"x-api-key": "YOUR_API_KEY"},
)
for user in resp.json()["users"]:
print(f"{user['uniqueId']} - {user['followerCount']} followers")JavaScript
const resp = await fetch(
"https://api.creatorcrawl.com/v1/tiktok/search/users?keyword=fitness%20coach",
{ headers: { "x-api-key": "YOUR_API_KEY" } }
)
const { users } = await resp.json()
users.forEach(u => console.log(`${u.uniqueId} - ${u.followerCount} followers`))