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

# Health check

> Check that we're up and running. We should be!



## OpenAPI

````yaml get /api/healthz
openapi: 3.1.0
info:
  title: Waystone API
  description: Development documentation
  version: 1.0.0
servers:
  - url: http://localhost:3000
    description: Local server
security:
  - bearerAuth: []
paths:
  /api/healthz:
    get:
      summary: Health check
      description: Check that we're up and running. We should be!
      operationId: health
      parameters: []
      responses:
        '200':
          description: Successful response
          content:
            application/json:
              schema:
                type: object
                properties:
                  message:
                    type: string
                required:
                  - message
                example:
                  message: Waystone activated!
      security:
        - {}
components:
  securitySchemes:
    bearerAuth:
      type: http
      scheme: bearer

````