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

# Health Check



## OpenAPI

````yaml GET /health
openapi: 3.0.3
info:
  title: HacktionBase Public API
  version: 1.0.0
  description: Public ingestion API for users, accounts and events tracking.
servers:
  - url: https://api.hacktionbase.com/v1
security:
  - bearerAuth: []
paths:
  /health:
    get:
      summary: Healthcheck
      responses:
        '200':
          description: OK
components:
  securitySchemes:
    bearerAuth:
      type: http
      scheme: bearer
      bearerFormat: APIKey

````