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

# Health check

> Check if the API is running.



## OpenAPI

````yaml /openapi.json get /health
openapi: 3.1.0
info:
  title: Sayless API
  version: 1.0.0
servers:
  - url: https://api.joinsayless.com
security: []
paths:
  /health:
    get:
      summary: Health check
      description: Check if the API is running.
      operationId: healthCheck
      responses:
        '200':
          description: API is healthy

````