Endpoint Playground
Test Crawlora's Retrieve TikTok Top Ads detail 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/detail?material_id=sample-material-id" \
-H "x-api-key: $CRAWLORA_API_KEY"| Parameter | Type | Required | Prefilled value | Description |
|---|---|---|---|---|
| material_id | string | Yes | sample-material-id | Top Ads material id |
{
"code": 200,
"msg": "OK",
"data": {
"code": 0,
"msg": "OK",
"data": {
"id": "7631130810943897607",
"ad_title": "Example ad",
"like": 120,
"ctr": 0.42,
"video_info": {
"vid": "v10033g50000example",
"duration": 15.2,
"cover": "https://p16-common-sign.tiktokcdn.com/..."
}
}
}
}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 detail for one TikTok Creative Center Top Ads material. Use `material_id`; the upstream does not accept `id` or `materialId`.
{
"code": 200,
"msg": "OK",
"data": {
"code": 0,
"msg": "OK",
"data": {
"id": "7631130810943897607",
"ad_title": "Example ad",
"like": 120,
"ctr": 0.42,
"video_info": {
"vid": "v10033g50000example",
"duration": 15.2,
"cover": "https://p16-common-sign.tiktokcdn.com/..."
}
}
}
}curl "https://api.crawlora.net/api/v1/tiktok/top-ads/detail?material_id=<material_id>" \
-H "x-api-key: $CRAWLORA_API_KEY"