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

# Check liveness



## OpenAPI

````yaml /openapi.json get /health/live
openapi: 3.1.0
info:
  title: openx402 Facilitator API
  version: 0.1.0
  description: >-
    HTTP, Bazaar discovery, analytics, and facilitator endpoints for openx402 on
    Stellar. This production API playground targets the public hosted testnet
    facilitator. Self-hosted operators can copy this specification and replace
    the server URL.
servers:
  - url: https://facilitator-production-8430.up.railway.app
    description: Hosted Stellar testnet preview
security: []
tags:
  - name: Health
    description: Liveness and readiness checks.
  - name: Facilitator
    description: x402 verification, settlement, and supported capabilities.
  - name: Bazaar discovery
    description: Public catalog browsing and ranked search.
  - name: Analytics
    description: Operator analytics. Fields and access depend on deployment configuration.
paths:
  /health/live:
    get:
      tags:
        - Health
      summary: Check liveness
      operationId: getHealthLive
      responses:
        '200':
          description: The process is alive.
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/HealthResponse'
components:
  schemas:
    HealthResponse:
      type: object
      required:
        - status
      properties:
        status:
          type: string
          example: ok

````