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

# Get cluster

> Get cluster details including status, health, and endpoint info



## OpenAPI

````yaml api-docs/archived/arc.json get /v1/regions/{region}/compute/clusters/{clusterId}
openapi: 3.1.1
info:
  title: Compute API
  version: 1.0.0
  description: >-
    Compute API for the k0rdent Enterprise platform. Provides Kubernetes cluster
    lifecycle management, virtual machine operations, and software-defined
    networking (SDN) including subnets, IPAM, load balancing, peering,
    interconnects, and firewalls.
  contact:
    name: k0rdent Enterprise API Support
    email: api-support@example.com
    url: https://support.example.com
  license:
    name: Proprietary
    url: https://k0rdent.example.com/license
servers:
  - url: ''
    description: For documentation only
  - url: https://api.example.com
    description: Arc API Base URL
  - url: https://api.internal.example.com
    description: Atlas API Base URL
  - url: http://localhost:{port}
    description: Local Development
    variables:
      port:
        default: '4005'
        description: Compute service port
security: []
paths:
  /v1/regions/{region}/compute/clusters/{clusterId}:
    get:
      tags:
        - Clusters
      summary: Get cluster
      description: Get cluster details including status, health, and endpoint info
      operationId: getCluster
      parameters:
        - name: region
          in: path
          required: true
          schema:
            type: string
          description: Region identifier
        - name: clusterId
          in: path
          required: true
          schema:
            type: string
          description: Cluster identifier
      responses:
        '200':
          description: Cluster details
          content:
            application/json:
              schema:
                type: object
                properties:
                  success:
                    type: boolean
                    enum:
                      - true
                  data:
                    $ref: '#/components/schemas/Cluster'
        '404':
          description: Cluster not found
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/ErrorResponse'
components:
  schemas:
    Cluster:
      type: object
      description: Kubernetes cluster resource
      properties:
        id:
          type: string
          description: Cluster identifier
        name:
          type: string
          description: Cluster name
        projectId:
          type: string
          description: Parent project
        regionId:
          type: string
          description: Deployment region
        kubernetesVersion:
          type: string
          description: Kubernetes version
        status:
          type: string
          enum:
            - provisioning
            - running
            - updating
            - degraded
            - deleting
            - error
          description: Cluster status
        health:
          type: object
          properties:
            status:
              type: string
              enum:
                - healthy
                - degraded
                - unhealthy
                - unknown
            lastChecked:
              type: string
              format: date-time
        endpoint:
          type: string
          nullable: true
          description: Kubernetes API endpoint
        nodeCount:
          type: number
          description: Total node count
        metadata:
          type: object
          nullable: true
          additionalProperties: true
        createdAt:
          type: string
          format: date-time
        updatedAt:
          type: string
          format: date-time
      required:
        - id
        - name
        - projectId
        - regionId
        - kubernetesVersion
        - status
        - createdAt
    ErrorResponse:
      type: object
      description: Standard error response following RFC 7807
      properties:
        success:
          type: boolean
          enum:
            - false
          description: Success indicator
        error:
          type: object
          properties:
            code:
              type: string
              description: Error code
              examples:
                - VALIDATION_ERROR
                - UNAUTHORIZED
                - FORBIDDEN
                - NOT_FOUND
                - CONFLICT
                - RATE_LIMITED
                - INTERNAL_ERROR
                - SERVICE_UNAVAILABLE
            message:
              type: string
              description: Human-readable error message
            details:
              type: object
              nullable: true
              description: Additional error details
          required:
            - code
            - message
        meta:
          type: object
          description: Response metadata
          properties:
            requestId:
              type: string
              description: Unique request identifier
            timestamp:
              type: string
              format: date-time
              description: Response timestamp
      required:
        - success
        - error

````