# Find domain renewals due in the next 60 days

**Use case:** 

Look up registration expiry via RDAP across a portfolio and list only the names lapsing within 60 days, so renewals can be batched at the registrar.

## Input

```json
{
  "domains": [
    "example.com",
    "example.net",
    "brand.io"
  ],
  "warnDays": 60,
  "checkDomainExpiry": true,
  "alertsOnly": true
}
```

## Output

```json
{
  "domain": {
    "label": "Domain",
    "format": "string"
  },
  "certDaysLeft": {
    "label": "Certificate days left",
    "format": "number"
  },
  "certValidTo": {
    "label": "Certificate valid to",
    "format": "string"
  },
  "certIssuer": {
    "label": "Certificate issuer",
    "format": "string"
  },
  "certError": {
    "label": "Certificate error",
    "format": "string"
  },
  "domainDaysLeft": {
    "label": "Domain days left",
    "format": "number"
  },
  "domainExpiresAt": {
    "label": "Domain expires at",
    "format": "string"
  },
  "hasAlert": {
    "label": "Has alert",
    "format": "boolean"
  },
  "alerts": {
    "label": "Alerts",
    "format": "array"
  },
  "checkedAt": {
    "label": "Checked at",
    "format": "string"
  }
}
```

## About this Actor

This example demonstrates how to use [Bulk SSL Certificate & Domain Expiry Checker](https://apify.com/davidbenittah/ssl-domain-expiry-monitor) with a specific input configuration. Visit the [Actor detail page](https://apify.com/davidbenittah/ssl-domain-expiry-monitor) to learn more, explore other use cases, and run it yourself.