Endpoint Playground
Test Crawlora's Retrieve posts from a 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/posts?secUid=MS4wLjABAAAAT4vq3vsh9X-Vb_WtV6tz4QWTbKjliTKCiK5DqnJNtQEA2RUveHb7UdnL7xgPK2HB&sort_type=0" \
-H "x-api-key: $CRAWLORA_API_KEY"| Parameter | Type | Required | Prefilled value | Description |
|---|---|---|---|---|
| secUid | string | Yes | MS4wLjABAAAAT4vq3vsh9X-Vb_WtV6tz4QWTbKjliTKCiK5DqnJNtQEA2RUveHb7UdnL7xgPK2HB | TikTok secUid for the profile |
| cursor | integer | No | Pagination cursor | |
| sort_type | integer | No | 0 | Sort mode: 0 latest, 1 popular, 2 oldest |
{
"code": 200,
"msg": "OK",
"data": {
"cursor": "1728674650000",
"extra": {
"fatal_item_ids": [],
"logid": "2024121114064544C2FAFFE7F9650789D4",
"now": 1733926005000
},
"hasMore": true,
"itemList": [
{
"AIGCDescription": "",
"CategoryType": 120,
"author": {
"avatarLarger": "https://p19-pu-sign-useast8.tiktokcdn-us.com/tos-useast5-avt-0068-tx/fb1ed871dc01261013179da3fafcc1cd~c5_1080x1080.jpeg?lk3s=a5d48078&non...",
"avatarMedium": "https://p16-pu-sign-useast8.tiktokcdn-us.com/tos-useast5-avt-0068-tx/fb1ed871dc01261013179da3fafcc1cd~c5_720x720.jpeg?lk3s=a5d48078&nonce...",
"avatarThumb": "https://p16-pu-sign-useast8.tiktokcdn-us.com/tos-useast5-avt-0068-tx/fb1ed871dc01261013179da3fafcc1cd~c5_100x100.jpeg?lk3s=a5d48078&nonce...",
"commentSetting": 0,
"downloadSetting": 0,
"duetSetting": 0
},
"authorStats": {
"diggCount": 352,
"followerCount": 458800,
"followingCount": 1,
"friendCount": 0,
"heart": 800300,
"heartCount": 800300
},
"backendSourceEventTracking": "",
"challenges": [
{
"coverLarger": "",
"coverMedium": "",
"coverThumb": "",
"desc": "",
"id": "7172185891421552645",
"profileLarger": ""
}
]
}
],
"log_pb": {
"impr_id": "2024121114064544C2FAFFE7F9650789D4"
},
"status_code": 0
}
}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 posts from a TikTok profile by `secUid`, with optional cursor pagination and sort mode.
{
"code": 200,
"msg": "OK",
"data": {
"cursor": "1728674650000",
"extra": {
"fatal_item_ids": [],
"logid": "2024121114064544C2FAFFE7F9650789D4",
"now": 1733926005000
},
"hasMore": true,
"itemList": [
{
"AIGCDescription": "",
"CategoryType": 120,
"author": {
"avatarLarger": "https://p19-pu-sign-useast8.tiktokcdn-us.com/tos-useast5-avt-0068-tx/fb1ed871dc01261013179da3fafcc1cd~c5_1080x1080.jpeg?lk3s=a5d48078&non...",
"avatarMedium": "https://p16-pu-sign-useast8.tiktokcdn-us.com/tos-useast5-avt-0068-tx/fb1ed871dc01261013179da3fafcc1cd~c5_720x720.jpeg?lk3s=a5d48078&nonce...",
"avatarThumb": "https://p16-pu-sign-useast8.tiktokcdn-us.com/tos-useast5-avt-0068-tx/fb1ed871dc01261013179da3fafcc1cd~c5_100x100.jpeg?lk3s=a5d48078&nonce...",
"commentSetting": 0,
"downloadSetting": 0,
"duetSetting": 0
},
"authorStats": {
"diggCount": 352,
"followerCount": 458800,
"followingCount": 1,
"friendCount": 0,
"heart": 800300,
"heartCount": 800300
},
"backendSourceEventTracking": "",
"challenges": [
{
"coverLarger": "",
"coverMedium": "",
"coverThumb": "",
"desc": "",
"id": "7172185891421552645",
"profileLarger": ""
}
]
}
],
"log_pb": {
"impr_id": "2024121114064544C2FAFFE7F9650789D4"
},
"status_code": 0
}
}curl "https://api.crawlora.net/api/v1/tiktok/posts?secUid=<secUid>" \
-H "x-api-key: $CRAWLORA_API_KEY"