DomainOpsDomainOps

Renewals API

Query upcoming and past renewal dates for domains and SSL certificates. Use this to build renewal dashboards or integrate expiry data into your own tooling.

GET/api/v1/renewalsAuth required

Get renewal information for domains and/or SSL certificates within an optional date range.

Query Parameters

ParameterTypeRequiredDescription
typestringNoFilter by renewal type: domains or certificates
fromstringNoStart of date range, ISO 8601 format (e.g. 2026-01-01)
tostringNoEnd of date range, ISO 8601 format
statusstringNoFilter by status: active, expired, or expiring_soon
limitnumberNoMax results, default 50
offsetnumberNoPagination offset, default 0

Response

json
{
  "renewals": [
    {
      "id": "uuid",
      "domain": "example.com",
      "type": "domain",
      "expiry_date": "2025-12-01",
      "days_until_expiry": 248,
      "status": "active"
    }
  ],
  "total": 1,
  "summary": {
    "expiring_soon": 3,
    "expired": 0,
    "active": 47
  }
}