List the most recent HTTP check results for a monitor, including headers, response body, request/response metadata, and failure reason.
GET
/http/job/{job_id}/recent-checks
const url = 'https://api.siteqwality.com/http/job/2489E9AD-2EE2-8E00-8EC9-32D5F69181C0/recent-checks';const options = {method: 'GET', headers: {Authorization: 'Bearer <token>'}};
try { const response = await fetch(url, options); const data = await response.json(); console.log(data);} catch (error) { console.error(error);}curl --request GET \ --url https://api.siteqwality.com/http/job/2489E9AD-2EE2-8E00-8EC9-32D5F69181C0/recent-checks \ --header 'Authorization: Bearer <token>'Mirrors what the “Incident Report” tab shows for each transition row, but covers every check, success or failure.
Authorizations
Section titled “Authorizations ”Parameters
Section titled “ Parameters ”Path Parameters
Section titled “Path Parameters ” job_id
required
string format: uuid
HTTP monitor identifier
Query Parameters
Section titled “Query Parameters ” limit
integer | null format: int64
Number of recent check results to return (default 25, max 100).
Responses
Section titled “ Responses ”Recent HTTP check results, newest first
Missing or invalid authentication
Internal server error