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

# Health check



## OpenAPI

````yaml /api/openapi.json get /health
openapi: 3.0.0
info:
  title: Livy API
  version: 1.0.0
  description: Placeholder. Reemplazado automáticamente por el spec de livy-api vía CI.
servers:
  - url: https://api.getlivy.com
security: []
paths:
  /health:
    get:
      summary: Health check
      responses:
        '200':
          description: OK
          content:
            application/json:
              schema:
                type: object
                properties:
                  status:
                    type: string
                    example: ok

````