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

# Service health check

> Returns the health status of the aggregator service. Use for monitoring and load balancer health probes.



## OpenAPI

````yaml /api-reference/aggregator-openapi.json get /health
openapi: 3.1.0
info:
  title: XOXNO DEX Aggregator API
  version: 1.0.0
  description: >-
    Swap routing across xExchange, AshSwap, JEX, and OneDex on MultiversX,
    including split routes and reverse quotes.
servers:
  - url: https://swap.xoxno.com
security: []
paths:
  /health:
    get:
      tags:
        - Health
      summary: Service health check
      description: >-
        Returns the health status of the aggregator service. Use for monitoring
        and load balancer health probes.
      operationId: healthCheck
      responses:
        '200':
          description: Service is healthy.
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/HealthResponse'
              example:
                status: ok
components:
  schemas:
    HealthResponse:
      type: object
      properties:
        status:
          type: string
          enum:
            - ok
          description: Service health status.

````