Endpoint Playground
Test Crawlora's List a Monitor's Check History 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>/checks" \
-H "Authorization: Token $CRAWLORA_JWT"| Parameter | Type | Required | Prefilled value | Description |
|---|---|---|---|---|
| id (path) | string | Yes | Monitor id |
{
"code": 200,
"msg": "OK",
"data": [
{
"id": "66d2f0c1c2a4e5f6a7b8c9d1",
"monitor_id": "66d2f0b1c2a4e5f6a7b8c9d0",
"checked_at": "2026-08-22T10:00:00Z",
"changed": true,
"diff": "- Starting at $29/mo\n+ Starting at $39/mo\n",
"billed": true,
"webhook_deliveries": [
{
"event": "change.detected",
"status": "delivered",
"status_code": 200,
"attempts": 1,
"delivered_at": "2026-08-22T10:00:02Z"
}
]
}
]
}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 the caller's own monitor's most recent check runs (most recent first, capped at 50), including webhook delivery status per run.
{
"code": 200,
"msg": "OK",
"data": [
{
"id": "66d2f0c1c2a4e5f6a7b8c9d1",
"monitor_id": "66d2f0b1c2a4e5f6a7b8c9d0",
"checked_at": "2026-08-22T10:00:00Z",
"changed": true,
"diff": "- Starting at $29/mo\n+ Starting at $39/mo\n",
"billed": true,
"webhook_deliveries": [
{
"event": "change.detected",
"status": "delivered",
"status_code": 200,
"attempts": 1,
"delivered_at": "2026-08-22T10:00:02Z"
}
]
}
]
}curl "https://api.crawlora.net/api/v1/monitors/<id>/checks" \
-H "Authorization: Token $CRAWLORA_JWT"