---
title: "Get DNS Monitor Check History"
description: "Returns recent DNS check results for a monitor."
---

`GET /api/dns-monitors/:dnsMonitorPublicId/check-history`

## Query Parameters

- `limit` (optional, default `50`, max `200`)

## Example (cURL)

```bash
BASE_URL="https://uptimeify.io"
TOKEN="<your-api-token>"

curl -X GET \
  "$BASE_URL/api/dns-monitors/11111111-1111-4111-8111-111111111111/check-history?limit=50" \
  -H "Authorization: Bearer $TOKEN" \
  -H "Accept: application/json"
```

## Example Response

```json
{
  "data": []
}
```

## Common errors

- `400 DNS monitor public ID (UUID) required`
- `401 Unauthorized`
- `403 Forbidden`

