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

# Faucet Status

> Check the faucet's availability, pool balance, and rate limit configuration.

Check whether the testnet USDC faucet is configured and has funds available. When `enabled` is `false`, no other fields are returned.


## OpenAPI

````yaml api-reference/openapi.json GET /faucet/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:
  /faucet/status:
    get:
      tags:
        - Testnet
      summary: Faucet Status
      description: >-
        Whether the faucet is enabled and, if so, its drip amount, cooldown, and
        remaining pool balance.
      operationId: faucetStatus
      responses:
        '200':
          description: Faucet status
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/FaucetStatus'
components:
  schemas:
    FaucetStatus:
      type: object
      properties:
        enabled:
          type: boolean
          example: true
        dripAmount:
          type: number
          example: 1000
        cooldownMinutes:
          type: integer
          example: 1440
        poolBalance:
          type: number
          description: Remaining USDC in the faucet pool.
          example: 250000

````