> ## 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 readiness



## OpenAPI

````yaml /openapi.json get /health/ready
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/ready:
    get:
      tags:
        - Health
      summary: Check readiness
      operationId: getHealthReady
      responses:
        '200':
          description: Database and required startup checks are ready.
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/ReadinessResponse'
        '503':
          description: The service is not ready.
components:
  schemas:
    ReadinessResponse:
      type: object
      required:
        - status
      properties:
        status:
          type: string
          example: ready
        search:
          $ref: '#/components/schemas/FreeformObject'
    FreeformObject:
      type: object
      additionalProperties: true

````