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

# List catalog payers for pre-quote lite (playground)

> Scoped to the authenticated partner. Powers the optional payer filter on pre-quote lite so integrators pick a canonical catalog code.



## OpenAPI

````yaml /raas-widgets/openapi.json get /partner/pre-quote-lite/catalog/payers
openapi: 3.0.0
info:
  title: RaaS Widgets Partner API
  description: >
    REST API for RaaS Widgets partner integrations. Create magic links for
    embeddable flows, manage end users, track transfer operations, handle CIP
    verification, and configure webhooks for real-time event notifications.


    This specification covers the **Partner-accessible API** only (`X-API-Key`
    against `/partner/*`). Widget and Superadmin APIs are out of scope.


    ## Authentication


    All endpoints require an API key passed in the `X-API-Key` header. Use
    `raas_sandbox_*` keys for the sandbox environment and `raas_live_*` keys for
    production.


    ## Environments


    | Environment | Base URL |

    |---|---|

    | Sandbox | `https://raas-widgets-backend-sandbox.up.railway.app` |
  version: 1.18.0
  contact: {}
servers:
  - url: https://raas-widgets-backend-sandbox.up.railway.app
    description: Sandbox
security: []
tags:
  - name: Partner - Magic Links
    description: Create, list, and manage magic links for flows
  - name: Partner - Flows
    description: List enabled flows and the full flow catalog
  - name: Partner - Users
    description: View and manage end users associated with your partner account
  - name: Partner - Operations
    description: Track money transfer operations and their statuses
  - name: Partner - Requests
    description: List and inspect money-request records
  - name: Partner - Deferred Payouts
    description: List, inspect, and cancel deferred payout remittances
  - name: Partner - CIP
    description: Customer Identification Program (CIP) verification management
  - name: Partner - Data Requests
    description: Fulfill data requests for additional user information
  - name: Partner - Settings
    description: Configure partner-level settings (redirect URLs, logo, etc.)
  - name: Partner - Webhooks
    description: Configure webhook endpoints and inspect delivery history
  - name: Partner - Pricing
    description: >-
      Indicative pre-quote summaries (best / worst / averages) for partner
      integrations
paths:
  /partner/pre-quote-lite/catalog/payers:
    get:
      tags:
        - Partner - Pricing
      summary: List catalog payers for pre-quote lite (playground)
      description: >-
        Scoped to the authenticated partner. Powers the optional payer filter on
        pre-quote lite so integrators pick a canonical catalog code.
      operationId: PreQuoteLiteController_getPayers
      parameters:
        - name: fundingMethod
          required: false
          in: query
          schema:
            type: string
            enum:
              - DEBIT_CARD
              - CREDIT_CARD
              - ACH
              - RTP
              - WALLET
              - CASH_DEPOSIT
              - BANK_BALANCE
        - name: includeUnavailable
          required: false
          in: query
          description: Include items with effectiveStatus = UNAVAILABLE
          schema:
            default: false
            type: boolean
        - name: originCountryCode
          required: false
          in: query
          schema:
            type: string
        - name: destinationCountryCode
          required: false
          in: query
          description: ISO 3166-1 alpha-2 destination
          schema:
            type: string
            example: MX
        - name: stateCode
          required: false
          in: query
          schema:
            type: string
        - name: cityCode
          required: false
          in: query
          schema:
            type: string
        - name: payoutMethod
          required: false
          in: query
          schema:
            type: string
            enum:
              - CASH_PICKUP
              - BANK_ACCOUNT
              - PUSH_TO_CARD
              - MOBILE_WALLET
              - HOME_DELIVERY
      responses:
        '200':
          description: ''
          content:
            application/json:
              schema:
                type: array
                items:
                  $ref: '#/components/schemas/PayerCapabilityDto'
      security:
        - api-key: []
components:
  schemas:
    PayerCapabilityDto:
      type: object
      properties:
        payerCode:
          type: string
        displayName:
          type: string
        countryCode:
          type: string
        payoutMethods:
          type: array
          items:
            type: string
        supportedByCorridors:
          type: array
          items:
            type: string
        effectiveStatus:
          type: string
          enum:
            - AVAILABLE
            - UNAVAILABLE
        instructions:
          type: string
          description: >-
            Free-text guidance to render verbatim under the payer
            (already-localized).
        constraints:
          type: object
      required:
        - payerCode
        - displayName
        - countryCode
        - payoutMethods
        - supportedByCorridors
        - effectiveStatus
  securitySchemes:
    api-key:
      type: apiKey
      in: header
      name: X-API-Key
      description: >-
        Your partner API key. Use `raas_sandbox_*` keys for the sandbox
        environment and `raas_live_*` keys for production.

````