> ## 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 money requests

> Returns a paginated list of money requests (solicitudes) for the authenticated partner. Filter by requester referenceId, status, and date range. Each item includes the request status and the id of the operation that fulfills it (if any).



## OpenAPI

````yaml /raas-widgets/openapi.json get /partner/requests
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/requests:
    get:
      tags:
        - Partner - Requests
      summary: List money requests
      description: >-
        Returns a paginated list of money requests (solicitudes) for the
        authenticated partner. Filter by requester referenceId, status, and date
        range. Each item includes the request status and the id of the operation
        that fulfills it (if any).
      operationId: PartnerRequestsController_listRequests
      parameters:
        - name: referenceId
          required: false
          in: query
          description: Filter requests by the requester partner reference ID
          schema:
            example: user-12345
            type: string
        - name: status
          required: false
          in: query
          description: >-
            Filter by request status. "pending" = awaiting a payer. "accepted" =
            a payer created the fulfilling operation. "funded" = the operation
            completed. "failed"/"expired"/"cancelled" = not fulfilled.
          schema:
            example: pending
            enum:
              - pending
              - accepted
              - funded
              - failed
              - expired
              - cancelled
            type: string
        - name: from
          required: false
          in: query
          description: Filter requests created on or after this date (ISO 8601)
          schema:
            example: '2026-01-01T00:00:00.000Z'
            type: string
        - name: to
          required: false
          in: query
          description: Filter requests created on or before this date (ISO 8601)
          schema:
            example: '2026-02-28T23:59:59.999Z'
            type: string
        - name: page
          required: false
          in: query
          description: Page number (1-indexed)
          schema:
            minimum: 1
            default: 1
            type: number
        - name: limit
          required: false
          in: query
          description: Number of items per page
          schema:
            minimum: 1
            maximum: 100
            default: 20
            type: number
      responses:
        '200':
          description: Paginated list of requests
        '401':
          description: Unauthorized
      security:
        - api-key: []
components:
  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.

````