> ## 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.

# AI provider health

> Returns the health status of all configured AI providers.
This endpoint is called via service binding and is not
externally authenticated.




## OpenAPI

````yaml /docs/openapi-minimal.yaml get /agent/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:
  /agent/health:
    get:
      tags:
        - AI Agent
      summary: AI provider health
      description: |
        Returns the health status of all configured AI providers.
        This endpoint is called via service binding and is not
        externally authenticated.
      operationId: agentHealth
      responses:
        '200':
          description: Provider statuses returned
          content:
            application/json:
              schema:
                type: object
                properties:
                  success:
                    type: boolean
                    example: true
                  providers:
                    type: object
                    additionalProperties:
                      type: object
                      properties:
                        healthy:
                          type: boolean
                        latencyMs:
                          type: integer
                        lastError:
                          type: string
                          nullable: true

````