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

# Service health

> Public health endpoint used by load balancers and uptime checks.



## OpenAPI

````yaml /api-reference/openapi.json get /health
openapi: 3.0.0
info:
  title: RouteMesh API
  version: 1.0.0
  description: >-
    HTTP API for routing JSON-RPC requests across providers, managing API keys,
    and viewing usage.
  license:
    name: Proprietary
    url: https://routeme.sh
servers:
  - url: https://lb.routeme.sh
    description: Primary API endpoint
  - url: https://lb2.routeme.sh
    description: AWS DNS load balancer (backup)
security: []
tags:
  - name: RPC
    description: Forward JSON-RPC requests to the router.
  - name: Chains
    description: Discover supported chains.
  - name: API Keys
    description: Manage your API keys for self-service access.
  - name: Usage
    description: View your usage and billing data.
  - name: Health
    description: Service health checks.
paths:
  /health:
    get:
      tags:
        - Health
      summary: Service health
      description: Public health endpoint used by load balancers and uptime checks.
      operationId: getHealth
      responses:
        '200':
          description: Service is healthy and serving requests
          content:
            application/json:
              schema:
                type: object
                properties:
                  success:
                    type: boolean
                  message:
                    type: string
                required:
                  - success
                  - message
                additionalProperties: false
              example:
                success: true
                message: The service is ready to serve requests

````