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

# Inspect search health



## OpenAPI

````yaml /openapi.json get /analytics/v1/search/status
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:
  /analytics/v1/search/status:
    get:
      tags:
        - Analytics
      summary: Inspect search health
      operationId: getSearchStatus
      responses:
        '200':
          description: Lexical, semantic, reranker, generation, and queue status.
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/FreeformObject'
        '401':
          $ref: '#/components/responses/Unauthorized'
      security:
        - bearerAuth: []
        - {}
components:
  schemas:
    FreeformObject:
      type: object
      additionalProperties: true
    ErrorResponse:
      type: object
      required:
        - error
      properties:
        error:
          type: string
        details:
          type: array
          items:
            type: string
      additionalProperties: true
  responses:
    Unauthorized:
      description: A configured bearer key was missing or invalid.
      content:
        application/json:
          schema:
            $ref: '#/components/schemas/ErrorResponse'
  securitySchemes:
    bearerAuth:
      type: http
      scheme: bearer
      bearerFormat: API key
      description: >-
        Optional on keyless testnet profiles. Required when the operator
        configures FACILITATOR_API_KEYS and on pubnet.

````