---
title: "Get IMAP/POP Monitor Check History"
description: "Returns recent check results for the IMAP/POP monitor."
---

`GET /api/imap-pop-monitors/:imapPopMonitorPublicId/check-history`

## Authentication

Requires a valid session.

- Header: `Authorization: Bearer <token>`

## Parameters

- `imapPopMonitorPublicId` (Path, required): IMAP/POP monitor public UUID.
- `limit` (Query, optional): Maximum number of results (default: 50, max: 200).

## cURL

```bash
curl -X GET "https://YOUR_DOMAIN/api/imap-pop-monitors/66666666-6666-4666-8666-666666666666/check-history?limit=50" \
  -H "Authorization: Bearer $TOKEN"
```

## Response

```json
{
  "data": [
    {
      "id": 123,
      "status": "success",
      "errorMessage": null,
      "warningMessage": null,
      "timingImapPop": 142,
      "diagnostics": { "message": "IMAP connection successful" },
      "checkedAt": "2026-02-26T12:00:00.000Z",
      "locationId": 7,
      "locationName": "Nuremberg (DE)",
      "locationCode": "de-nbg"
    }
  ]
}
```

## Errors

- `400` IMAP/POP monitor public ID (UUID) required
- `401` Unauthorized
- `403` Forbidden
- `404` IMAP/POP monitor not found

