Endpoint Playground
Test Crawlora's Retrieve TikTok Top Ads Spotlight 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/top-ads/spotlight?page=1&limit=10" \
-H "x-api-key: $CRAWLORA_API_KEY"| Parameter | Type | Required | Prefilled value | Description |
|---|---|---|---|---|
| page | integer | No | 1 | Page number |
| limit | integer | No | 10 | Maximum number of ads to return |
{
"code": 200,
"msg": "OK",
"data": {
"code": 0,
"msg": "OK",
"data": {
"materials": [
{
"id": "7200915172051156993",
"highlight": "Creative note",
"like": 86410,
"ctr": 0.25
}
],
"pagination": {
"page": 2,
"size": 20,
"total": 39,
"has_more": false
}
}
}
}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 Top Ads Spotlight materials handpicked by TikTok Creative Center.
{
"code": 200,
"msg": "OK",
"data": {
"code": 0,
"msg": "OK",
"data": {
"materials": [
{
"id": "7200915172051156993",
"highlight": "Creative note",
"like": 86410,
"ctr": 0.25
}
],
"pagination": {
"page": 2,
"size": 20,
"total": 39,
"has_more": false
}
}
}
}curl "https://api.crawlora.net/api/v1/tiktok/top-ads/spotlight" \
-H "x-api-key: $CRAWLORA_API_KEY"