---
title: "Get monitor check results"
method: GET
path: "/api/monitors/{id}/results"
tags: ["Monitors"]
---

# Get monitor check results

`GET /api/monitors/{id}/results`

Retrieve paginated check results for a monitor with optional date and location filters.

## Query parameters

- `page` integer
- `limit` integer
- `date` string, date
- `location` string

## Response `200`

Check results

- object
  - `pagination` object
    - `total` integer
    - `page` integer
    - `limit` integer
    - `totalPages` integer
    - `hasNextPage` boolean
    - `hasPrevPage` boolean
  - `data` MonitorResult[]
    - `id` string, uuid
    - `monitorId` string, uuid
    - `checkedAt` string, date-time
    - `location` string
    - `status` 'up' | 'down' | 'error' | 'timeout'
    - `responseTimeMs` integer, nullable — Response time in milliseconds
    - `details` MonitorResultDetails
      - `statusCode` integer, nullable
      - `statusText` string, nullable
      - `errorMessage` string, nullable
      - `responseHeaders` object
      - `responseBodySnippet` string, nullable
      - `ipAddress` string, nullable
      - `location` string, nullable
      - `sslCertificate` object
        - `valid` boolean
        - `issuer` string, nullable
        - `subject` string, nullable
        - `validFrom` string, nullable
        - `validTo` string, nullable
        - `daysRemaining` integer, nullable
    - `isUp` boolean
    - `isStatusChange` boolean
    - `consecutiveFailureCount` integer
    - `consecutiveSuccessCount` integer
    - `alertsSentForFailure` integer
    - `alertsSentForRecovery` integer
    - `testExecutionId` string, nullable
    - `testReportS3Url` string, nullable
    - `executionGroupId` string, nullable

## Other responses

- `400` — Invalid pagination or filter parameters
- `401` — Authentication required or token invalid
- `404` — Resource not found

---

[API](https://skmtc.net/supercheck-io/apis/supercheck-api.md) · [All operations](https://skmtc.net/supercheck-io/apis/supercheck-api/llms.txt) · [OpenAPI document](https://skmtc-service-staging.skmtc.workers.dev/v1/apis/supercheck-io/supercheck-api/versions/81782deccf0e/schema)
