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://creatorcrawl.com/api/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://creatorcrawl.com/api/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://creatorcrawl.com/api/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

Add one line to your
MCP config. Ship today.

250 free credits. No card. Works with Claude, Cursor, Windsurf, Zed, and any MCP client.