> ## 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.

# Health check

> Returns the health of the Kubernetes Service API



## OpenAPI

````yaml api-docs/app-team/kubernetes.json get /health
openapi: 3.1.1
info:
  title: Kubernetes Service API
  version: 1.0.0
  description: >-
    Kubernetes Service API for managing Kubernetes resources. Arc and Atlas APIs
    call this service through Kong Gateway.
servers:
  - url: http://localhost:4065
    description: Local Development
security: []
paths:
  /health:
    get:
      tags:
        - Health
      summary: Health check
      description: Returns the health of the Kubernetes Service API
      responses:
        '200':
          description: Health check response
          content:
            application/json:
              schema:
                type: object
                properties:
                  status:
                    type: string
                  timestamp:
                    type: string
                required:
                  - status
                  - timestamp

````