Endpoint Playground
Test Crawlora's TikTok Profile API with realistic prefilled parameters. Generate a cURL request, inspect the expected structured JSON response, and open the full docs or pricing page when you are ready to integrate this public web data extraction endpoint into your application.
curl "https://api.crawlora.net/api/v1/tiktok/profile/chatgpt" \
-H "x-api-key: $CRAWLORA_API_KEY"| Parameter | Type | Required | Prefilled value | Description |
|---|---|---|---|---|
| handler (path) | string | Yes | chatgpt | TikTok handle without the leading @ |
{
"code": 200,
"msg": "OK",
"data": {
"user": {
"id": "7256182609359995947",
"uniqueId": "chatgpt",
"nickname": "chatgpt",
"signature": "What can I help with?",
"verified": true,
"secUid": "MS4wLjABAAAAT4vq3vsh9X-Vb_WtV6tz4QWTbKjliTKCiK5DqnJNtQEA2RUveHb7UdnL7xgPK2HB"
},
"stats": {
"followerCount": 458800,
"followingCount": 1,
"heartCount": 800300,
"videoCount": 59
}
}
}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.
Returns the TikTok profile payload for a public handle.
{
"code": 200,
"msg": "OK",
"data": {
"user": {
"id": "7256182609359995947",
"uniqueId": "chatgpt",
"nickname": "chatgpt",
"signature": "What can I help with?",
"verified": true,
"secUid": "MS4wLjABAAAAT4vq3vsh9X-Vb_WtV6tz4QWTbKjliTKCiK5DqnJNtQEA2RUveHb7UdnL7xgPK2HB"
},
"stats": {
"followerCount": 458800,
"followingCount": 1,
"heartCount": 800300,
"videoCount": 59
}
}
}curl "https://api.crawlora.net/api/v1/tiktok/profile/<handler>" \
-H "x-api-key: $CRAWLORA_API_KEY"