Skip to main content
GET
/
uptime-monitors
/
{id}
curl "https://kodostatus.com/api/v1/uptime-monitors/mon_abc123" \
  -H "X-API-Key: your_api_key"
{
  "id": "uuid",
  "name": "API Health Check",
  "url": "https://api.example.com/health",
  "status": "up",
  "uptime_percentage": 99.95,
  "avg_response_time_ms": 245,
  "recent_checks": [
    { "status": "up", "response_time_ms": 230, "checked_at": "2024-01-15T10:30:00Z" }
  ]
}

Path Parameters

id
string
required
The monitor ID

Response

id
string
Monitor ID
name
string
Monitor name
url
string
Monitored URL
status
string
Current status
uptime_percentage
number
Uptime percentage over last 30 days
avg_response_time_ms
number
Average response time in milliseconds
recent_checks
array
curl "https://kodostatus.com/api/v1/uptime-monitors/mon_abc123" \
  -H "X-API-Key: your_api_key"
{
  "id": "uuid",
  "name": "API Health Check",
  "url": "https://api.example.com/health",
  "status": "up",
  "uptime_percentage": 99.95,
  "avg_response_time_ms": 245,
  "recent_checks": [
    { "status": "up", "response_time_ms": 230, "checked_at": "2024-01-15T10:30:00Z" }
  ]
}