Endpoint Playground
Test Crawlora's Search the TikTok creators dataset API with realistic prefilled filters. Generate a cURL request, inspect stored structured JSON records, and open the full docs or pricing page when you are ready to integrate dataset search. Dataset Playground requests query indexed data and do not apply proxy routing.
curl "https://api.crawlora.net/api/v1/datasets/creators/search?sort=followers_desc" \
-H "x-api-key: $CRAWLORA_API_KEY"| Parameter | Type | Required | Prefilled value | Description |
|---|---|---|---|---|
| q | string | No | Full-text query over handle, nickname and bio, max 256 characters | |
| handle | string | No | Exact handle lookup (case-insensitive), e.g. khaby.lame; returns the single creator with that exact @handle | |
| niche | string | No | Exact content-niche filter, max 128 characters | |
| country | string | No | Exact creator country/region filter, max 128 characters | |
| verified | boolean | No | Filter by verified badge; true keeps only verified creators | |
| min_followers | integer | No | Minimum follower count | |
| has_email | boolean | No | Filter by contact-email presence; true keeps only creators with an email | |
| include_inactive | boolean | No | Include deleted/private accounts; defaults to false (only live accounts returned) | |
| sort | string | No | followers_desc | Sort enum: followers_desc, engagement_desc, likes_desc, relevance. engagement_desc ranks by post-level engagement rate, currently populated for a subset of creators (highest-reach first); creators without it sort last |
| page | integer | No | Page number, defaults to 1 | |
| page_size | integer | No | Page size, defaults to 20 and maxes at 100; page * page_size must be <= 10000 |
{
"code": 200,
"msg": "OK",
"data": {
"dataset": "creators",
"items": [
{
"creator_uid": "tiktok:@bubble",
"platform": "tiktok",
"sec_uid": "MS4wLjABAAAAxxxxxxxx",
"unique_id": "bubble",
"nickname": "Bubble Skincare",
"bio": "Built with dermatologists since day 1.",
"bio_link": "https://hellobubble.com",
"niche": "skincare",
"country": "us",
"verified": true,
"follower_count": 4100000,
"following_count": 312,
"total_likes": 25246297,
"video_count": 1840,
"first_seen": "2026-06-20T05:00:00Z",
"last_crawled": "2026-06-20T05:00:00Z"
}
],
"page": 1,
"page_size": 20,
"total": 1,
"sort": "followers_desc"
}
}Public Playground
Sample responses, schemas, request previews, and code snippets are visible before sign in. Create an account when you are ready to save an API key and run authenticated requests.
Searches TikTok creators stored in a search index (one document per creator), with follower counts, verified status, niche, and engagement. Deleted and private accounts are excluded by default; set `include_inactive=true` to include them for historical lookups. Sort enum: `followers_desc`, `engagement_desc`, `likes_desc`, `relevance`. Coverage note: `followers_desc`, `likes_desc`, and `relevance` are backed by profile fields present across the full dataset; the post-level engagement metrics (`engagement_rate`, `avg_views`, and the nested `post_stats` object) and the `engagement_desc` sort are currently populated for a growing subset of creators, prioritizing the highest-reach accounts. Creators without these metrics are still returned but sort last under `engagement_desc` and omit those fields. Dataset endpoints are built for repeatable structured search, facets, geo queries, pagination, and item lookup over indexed records. They do not trigger live scraping or proxy routing.
{
"code": 200,
"msg": "OK",
"data": {
"dataset": "creators",
"items": [
{
"creator_uid": "tiktok:@bubble",
"platform": "tiktok",
"sec_uid": "MS4wLjABAAAAxxxxxxxx",
"unique_id": "bubble",
"nickname": "Bubble Skincare",
"bio": "Built with dermatologists since day 1.",
"bio_link": "https://hellobubble.com",
"niche": "skincare",
"country": "us",
"verified": true,
"follower_count": 4100000,
"following_count": 312,
"total_likes": 25246297,
"video_count": 1840,
"first_seen": "2026-06-20T05:00:00Z",
"last_crawled": "2026-06-20T05:00:00Z"
}
],
"page": 1,
"page_size": 20,
"total": 1,
"sort": "followers_desc"
}
}curl "https://api.crawlora.net/api/v1/datasets/creators/search" \
-H "x-api-key: $CRAWLORA_API_KEY"