Endpoint Playground
Test Crawlora's Retrieve TikTok Top Ads recommendations 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/recommend?material_id=sample-material-id&page=1&limit=10" \
-H "x-api-key: $CRAWLORA_API_KEY"| Parameter | Type | Required | Prefilled value | Description |
|---|---|---|---|---|
| material_id | string | Yes | sample-material-id | Top Ads material id |
| 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": []
}
}
}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 recommended Top Ads materials related to a material id.
{
"code": 200,
"msg": "OK",
"data": {
"code": 0,
"msg": "OK",
"data": {
"materials": []
}
}
}curl "https://api.crawlora.net/api/v1/tiktok/top-ads/recommend?material_id=<material_id>" \
-H "x-api-key: $CRAWLORA_API_KEY"