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

# Get health

> Check server health and version



## OpenAPI

````yaml /openapi.json get /health
openapi: 3.1.0
info:
  title: Keyflare API
  description: >-
    Open-source secrets manager built entirely on Cloudflare. One Worker. One D1
    database. Zero trust storage.
  version: 0.1.0
  contact:
    name: Keyflare
    url: https://github.com/keyflare/keyflare
  license:
    name: MIT
    url: https://opensource.org/licenses/MIT
servers:
  - url: '{baseUrl}'
    description: Your Keyflare deployment
    variables:
      baseUrl:
        default: https://keyflare.YOUR_ACCOUNT.workers.dev
        description: >-
          Base URL of your Keyflare Worker (e.g. https://secrets.example.com or
          https://keyflare.my-account.workers.dev)
security:
  - bearerAuth: []
tags:
  - name: Health
    description: Health check endpoints
  - name: Bootstrap
    description: Initial setup endpoints
  - name: Keys
    description: API key management
  - name: Projects
    description: Project management
  - name: Environments
    description: Environment management
  - name: Secrets
    description: Secret management
paths:
  /health:
    get:
      tags:
        - Health
      description: Check server health and version
      operationId: getHealth
      responses:
        '200':
          description: Server is healthy
          content:
            application/json:
              schema:
                type: object
                properties:
                  ok:
                    type: boolean
                    const: true
                  data:
                    type: object
                    properties:
                      ok:
                        type: boolean
                        const: true
                      version:
                        type: string
                    required:
                      - ok
                      - version
                required:
                  - ok
                  - data
components:
  securitySchemes:
    bearerAuth:
      type: http
      scheme: bearer
      description: API key authentication (kfl_user_* or kfl_sys_*)

````