> ## Documentation Index
> Fetch the complete documentation index at: https://docs.kodostatus.com/llms.txt
> Use this file to discover all available pages before exploring further.

# List Uptime Monitors

> Get all uptime monitors for your organization

## Response

<ResponseField name="monitors" type="array">
  <Expandable title="monitor object">
    <ResponseField name="id" type="string">
      Unique monitor identifier
    </ResponseField>

    <ResponseField name="name" type="string">
      Monitor name
    </ResponseField>

    <ResponseField name="url" type="string">
      URL being monitored
    </ResponseField>

    <ResponseField name="interval_seconds" type="integer">
      Check interval in seconds
    </ResponseField>

    <ResponseField name="enabled" type="boolean">
      Whether monitor is active
    </ResponseField>

    <ResponseField name="status" type="string">
      Current status: `up`, `down`, `degraded`
    </ResponseField>

    <ResponseField name="last_checked_at" type="string">
      ISO 8601 timestamp of last check
    </ResponseField>

    <ResponseField name="service_id" type="string">
      Linked service ID (if any)
    </ResponseField>
  </Expandable>
</ResponseField>

<RequestExample>
  ```bash cURL theme={null}
  curl "https://kodostatus.com/api/v1/uptime-monitors" \
    -H "X-API-Key: your_api_key"
  ```
</RequestExample>

<ResponseExample>
  ```json theme={null}
  {
    "monitors": [
      {
        "id": "uuid",
        "name": "API Health Check",
        "url": "https://api.example.com/health",
        "interval_seconds": 300,
        "enabled": true,
        "status": "up",
        "last_checked_at": "2024-01-15T10:30:00Z",
        "service_id": "uuid"
      }
    ]
  }
  ```
</ResponseExample>
