TikTok User search API
Search TikTok accounts by keyword with cursor pagination: handle, nickname and follower count.
Provider network
Providers ranked by traffic
Try it
Make your first request
{
"found": true,
"data": {
"nextCursor": "30",
"users": [
{
"handle": "cristiano",
"nickname": "Cristiano Ronaldo",
"userId": "6757029651601835013",
"followers": 64200000,
"following": 12
}
]
}
}interface TiktokSearchUsersResponse {
data: {
nextCursor: string | null;
users: {
followers: number;
following: number;
handle: string;
nickname: string;
userId: string;
}[];
} | null;
found: boolean;
}Full parameter and response reference - every field, type, and example for this endpoint.
Reference
Request, response, and price
Last verified 2026-09-16 · uptime and latency measured over 30dcurl -X POST https://api.getanyapi.com/v1/run/tiktok.search_users \
-H "Authorization: Bearer $ANYAPI_KEY" \
-H "Content-Type: application/json" \
-d '{"query":"cristiano"}'| Field | Type | Example value |
|---|---|---|
| Request body | ||
| query | string | "cristiano"The keyword to search TikTok accounts for. |
| cursor | string | Pagination cursor from a previous response's nextCursor. |
| Response | ||
| found | boolean | true |
| data | object | |
| data.nextCursor | string | "30" |
| data.users | array | |
| data.users[].handle | string | "cristiano" |
| data.users[].nickname | string | "Cristiano Ronaldo" |
| data.users[].userId | string | "6757029651601835013" |
| data.users[].followers | number | 64200000 |
| data.users[].following | number | 12 |
| Price | ||
| Price per request | USD | $0.0012 |
| Price /1k req | USD | $1.20 |
FAQ
About the TikTok User search API
The AnyAPI TikTok User search API returns TikTok user search data as normalized JSON from one POST call to /v1/run/tiktok.search_users. Search TikTok accounts by keyword with cursor pagination: handle, nickname and follower count. AnyAPI routes each request across 3 sources and falls back automatically when one fails. It costs from $1.20 per 1,000 requests, in US dollars with no subscription and no monthly minimum. Over the last 30 days, 100.0% of TikTok user search calls through AnyAPI succeeded, with a median response time of 1.9 seconds across 31 measured calls.