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



## OpenAPI

````yaml api-docs/app-team/atlas.json get /health
openapi: 3.1.1
info:
  title: Atlas API
  version: 1.0.0
  description: >-
    Atlas API supporting the k0rdent Enterprise Atlas console with internal
    infrastructure management (bare metal, k0rdent clusters, VMs) for cloud
    administrators, featuring a look and feel similar to Google Cloud and other
    major cloud providers
servers:
  - url: http://localhost:4010
    description: Local Development
security: []
paths:
  /health:
    get:
      tags:
        - Health
      summary: Health check
      description: Returns the health of the API
      responses:
        '200':
          description: Health check response
          content:
            application/json:
              schema:
                type: object
                properties:
                  status:
                    type: string
                  timestamp:
                    type: string
                required:
                  - status
                  - timestamp

````