Monitors
Retrieve a monitor run
Fetches one run for a monitor, including lifecycle status, timing, credits charged, and any detected change.
get/monitors/{monitor_id}/runs/{run_id}
Path parameters
monitor_idstring required
Example:mon_123
run_idstring required
Example:run_123
Response
The requested monitor run
Example response
{
"id": "run_123",
"monitor_id": "mon_123",
"change_detected": true,
"change_id": "chg_123",
"credits_charged": 1,
"error": {
"code": "fetch_failed",
"message": "The target URL could not be fetched."
},
"webhook_delivery": {
"event_id": "evt_123",
"http_status": 200,
"error": {
"code": "fetch_failed",
"message": "The target URL could not be fetched."
}
},
"webhook_deliveries": [
{
"event_id": "evt_123",
"http_status": 200,
"error": {
"code": "fetch_failed",
"message": "The target URL could not be fetched."
}
}
]
}