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

# Liveness probe

> Returns ok when the api process is serving requests. Does not touch the database or require auth.



## OpenAPI

````yaml /openapi.json get /api/health
openapi: 3.0.0
info:
  title: Atlas API
  version: 0.0.0
servers:
  - url: https://api.atlaswork.ai
security: []
paths:
  /api/health:
    get:
      tags:
        - system
      summary: Liveness probe
      description: >-
        Returns ok when the api process is serving requests. Does not touch the
        database or require auth.
      responses:
        '200':
          description: Service is healthy
          content:
            application/json:
              schema:
                type: object
                properties:
                  status:
                    type: string
                    enum:
                      - ok
                required:
                  - status

````