Skip to main content
GET
/
domain-monitors
curl "https://kodostatus.com/api/v1/domain-monitors" \
  -H "X-API-Key: your_api_key"
{
  "domain_monitors": [
    {
      "id": "dom_abc123",
      "domain": "example.com",
      "alert_days": 60,
      "enabled": true,
      "last_checked_at": "2024-01-15T10:30:00Z",
      "registration": {
        "registrar": "Cloudflare, Inc.",
        "created_date": "2020-01-15T00:00:00Z",
        "expiry_date": "2025-01-15T00:00:00Z",
        "days_until_expiry": 365,
        "nameservers": ["ns1.cloudflare.com", "ns2.cloudflare.com"]
      },
      "service_id": null,
      "created_at": "2024-01-01T00:00:00Z"
    }
  ]
}

Request

No request body required.

Query Parameters

limit
number
default:"50"
Maximum number of monitors to return (1-100)
offset
number
default:"0"
Number of monitors to skip for pagination

Response

domain_monitors
array
Array of domain monitor objects
curl "https://kodostatus.com/api/v1/domain-monitors" \
  -H "X-API-Key: your_api_key"
{
  "domain_monitors": [
    {
      "id": "dom_abc123",
      "domain": "example.com",
      "alert_days": 60,
      "enabled": true,
      "last_checked_at": "2024-01-15T10:30:00Z",
      "registration": {
        "registrar": "Cloudflare, Inc.",
        "created_date": "2020-01-15T00:00:00Z",
        "expiry_date": "2025-01-15T00:00:00Z",
        "days_until_expiry": 365,
        "nameservers": ["ns1.cloudflare.com", "ns2.cloudflare.com"]
      },
      "service_id": null,
      "created_at": "2024-01-01T00:00:00Z"
    }
  ]
}