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

# System health check

> Probes the gateway worker's connectivity to critical edge
infrastructure — D1 database, KV store, and Queue — and
returns the health status of each binding.




## OpenAPI

````yaml /docs/openapi-minimal.yaml get /health
openapi: 3.0.3
info:
  title: Hoox API
  description: |
    REST API for the Hoox algorithmic trading platform.

    Ingest trade signals, check system health, and manage DeFi wallet
    operations on the Cloudflare edge. All requests are handled by the
    Hoox gateway worker (`workers/hoox`) running at the network edge.
  version: 1.0.0
  contact:
    name: Hoox Support
    email: support@hoox.sh
servers:
  - url: https://api.hoox.sh
    description: Production API
  - url: https://staging.hoox.sh
    description: Staging environment
security: []
paths:
  /health:
    get:
      tags:
        - System
      summary: System health check
      description: |
        Probes the gateway worker's connectivity to critical edge
        infrastructure — D1 database, KV store, and Queue — and
        returns the health status of each binding.
      operationId: healthCheck
      responses:
        '200':
          description: All bindings operational
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/HealthResponse'
        '503':
          description: One or more bindings degraded
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/HealthResponse'
components:
  schemas:
    HealthResponse:
      type: object
      properties:
        status:
          type: string
          example: ok
        timestamp:
          type: integer
          description: Unix timestamp in milliseconds
          example: 1779261050000
        bindings:
          type: object
          properties:
            d1:
              type: string
              example: connected
            kv:
              type: string
              example: connected
            queue:
              type: string
              example: active

````