GET/tiktok/search/users

Search 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

NameTypeRequiredDescription
keywordstringRequiredSearch keyword or phrase
cursorstringOptionalPagination 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`))

Related Endpoints

Explore More

Takes 60 seconds

Your agents are one config file away from six platforms.

250 free API calls. No card. Add the MCP server to Claude, Cursor, Windsurf, or Zed, or hit the REST API from any language.