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

# Health Check

> Returns service status and database connectivity. No authentication required.



## OpenAPI

````yaml GET /api/partner/health
openapi: 3.0.3
info:
  title: Partner API
  description: External API for ISO partners to access merchant data, pricing, and reports
  version: 0.1.0
servers: []
security: []
paths:
  /api/partner/health:
    get:
      tags:
        - Health
      summary: Health check
      description: >-
        Returns service status and database connectivity. No authentication
        required.
      operationId: health_check_api_partner_health_get
      responses:
        '200':
          description: Successful Response
          content:
            application/json:
              schema: {}
        '503':
          description: Service degraded

````