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

# Relay Status

> Check relay protocol version, connected market makers, and the maker channel paths.

Check the relay's current status — protocol version, how many market makers are connected, and the path for each maker channel. Use this to verify connectivity before subscribing to the [quote-request stream](/api-reference/market-maker/quote-stream) and opening the [post-trade WebSocket](/api-reference/market-maker/websocket).


## OpenAPI

````yaml api-reference/openapi.json GET /maker/v1/status
openapi: 3.1.0
info:
  title: Convallax RFQ API
  version: 3.0.0
  description: >-
    REST surface for the Convallax options protocol — a non-custodial
    request-for-quote marketplace for European calls and puts on Polymarket YES
    outcomes, settled on Polygon.


    **Wire format**: JSON. Successful responses include `"success": true`;
    failures return `{ "success": false, "error": "..." }`.


    **Authentication**: Takers (traders) need no API key — authorization happens
    on-chain at `fill()`. Market makers authenticate with a per-MM API key sent
    as `X-API-Key` (or `?apiKey=`).


    **Streaming**: Quote-request and live-pricing streams use Server-Sent Events
    and the post-trade channel uses WebSocket; those are documented in the
    guides and are not part of this request/response reference.
servers:
  - url: https://api.convallax.com
    description: Production
security: []
tags:
  - name: Series
    description: Browse registered option series available for trading.
  - name: Trading
    description: Open quote requests, read live quotes, and commit to the best price.
  - name: Market Maker
    description: >-
      Submit quotes and confirmation signatures. Authenticated with a per-MM API
      key.
  - name: Settlement
    description: Compute TWAP resolution prices and sign settlement attestations.
  - name: Testnet
    description: Polygon Amoy testnet USDC faucet.
  - name: User
    description: >-
      Account profile and self-serve API keys. Authenticated with a Privy access
      token.
paths:
  /maker/v1/status:
    get:
      tags:
        - Market Maker
      summary: Relay Status
      description: Protocol version, connected maker counts, and the maker channel paths.
      operationId: relayStatus
      responses:
        '200':
          description: Relay status
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/RelayStatus'
components:
  schemas:
    RelayStatus:
      type: object
      properties:
        protocolVersion:
          type: integer
          example: 3
        makersConnected:
          type: integer
          description: Distinct makers subscribed to the SSE quote-request stream.
          example: 3
        socketsConnected:
          type: integer
          description: Live post-trade WebSocket sockets.
          example: 4
        streamPath:
          type: string
          example: /v1/mm/quote-requests/stream
        quotePath:
          type: string
          example: /v1/mm/quotes
        wsPath:
          type: string
          example: /maker/v1/ws

````