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

# Health Check

> Health check endpoint returning service status and metrics in JSON format.



## OpenAPI

````yaml https://aquilax.ai/api/v3/openapi get /api/v3/health
openapi: 3.1.0
info:
  title: FastAPI
  version: 0.1.0
servers:
  - url: https://aquilax.ai
    description: Production server
security: []
paths:
  /api/v3/health:
    get:
      summary: Health Check
      description: >-
        Health check endpoint returning service status and metrics in JSON
        format.
      operationId: health_check_api_v3_health_get
      responses:
        '200':
          description: Successful Response
          content:
            application/json:
              schema: {}

````