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

# Health Check



## OpenAPI

````yaml GET /health
openapi: 3.1.0
info:
  title: Whilst Slack Bot API
  version: 0.1.0
  description: >-
    Internal endpoints backing the Whilst Slack bot. Includes Slack event
    intake, OAuth install flow, health checks, and admin operations.
servers:
  - url: https://api.staging.whilst.app
    description: Staging
  - url: https://api.whilst.app
    description: Production
security: []
paths:
  /health:
    get:
      summary: Liveness check
      operationId: getHealth
      responses:
        '200':
          description: Service is healthy
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/HealthStatus'
components:
  schemas:
    HealthStatus:
      type: object
      required:
        - status
      properties:
        status:
          type: string
          enum:
            - ok
        timestamp:
          type: string
          format: date-time

````