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"
}
]
}
Domain Monitors
List Domain Monitors
Retrieve all domain expiration monitors for your organization
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
Maximum number of monitors to return (1-100)
Number of monitors to skip for pagination
Response
Array of domain monitor objects
Show Domain Monitor Object
Show Domain Monitor Object
Unique identifier
Domain being monitored
Days before expiration to alert
Whether monitoring is active
ISO 8601 timestamp of last check
Linked service ID
ISO 8601 timestamp
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"
}
]
}
⌘I