Endpoint Playground
Test Crawlora's Delete a Website-Change Monitor 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/monitors/<id>" \
-H "Authorization: Token $CRAWLORA_JWT" \
-X DELETE| Parameter | Type | Required | Prefilled value | Description |
|---|---|---|---|---|
| id (path) | string | Yes | Monitor id |
{
"code": 200,
"msg": "OK",
"data": {
"deleted": true
}
}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.
Deletes one of the caller's own monitors. Free to call. Does not delete its past check history.
{
"code": 200,
"msg": "OK",
"data": {
"deleted": true
}
}curl "https://api.crawlora.net/api/v1/monitors/<id>" \
-H "Authorization: Token $CRAWLORA_JWT" \
-X DELETE