> ## Documentation Index
> Fetch the complete documentation index at: https://yn-c9bb3266.mintlify.site/llms.txt
> Use this file to discover all available pages before exploring further.

# List Transfers

> Lists all transfers associated with a recipient onboarding.



## OpenAPI

````yaml GET /v1/recipients/{recipient_id}/onboardings/{onboarding_id}/transfers
openapi: 3.1.0
info:
  title: Yuno Payments API
  description: >-
    Yuno payment orchestration platform — unified REST API for payments,
    checkout sessions, customers, payment methods, subscriptions, payouts,
    marketplace transfers, and banking connectivity across Latin America.
  version: 1.0.0
  contact:
    name: Yuno Support
    email: support@y.uno
    url: https://docs.y.uno
  license:
    name: Proprietary
    url: https://y.uno
servers:
  - url: https://api-sandbox.y.uno
    description: Sandbox
  - url: https://api.y.uno
    description: Production
security:
  - publicApiKey: []
    privateSecretKey: []
paths:
  /v1/recipients/{recipient_id}/onboardings/{onboarding_id}/transfers:
    get:
      tags:
        - Recipients
      summary: List transfers
      description: Lists all transfers associated with a recipient onboarding.
      operationId: listOnboardingTransfers
      parameters:
        - name: recipient_id
          in: path
          required: true
          description: The unique identifier of the recipient
          schema:
            type: string
            format: uuid
        - name: onboarding_id
          in: path
          required: true
          description: The unique identifier of the onboarding
          schema:
            type: string
            format: uuid
        - name: limit
          in: query
          description: Maximum number of results
          schema:
            type: integer
            default: 20
        - name: starting_after
          in: query
          description: Cursor for forward pagination
          schema:
            type: string
      responses:
        '200':
          description: List of transfers
          content:
            application/json:
              schema:
                type: array
                items:
                  $ref: '#/components/schemas/OnboardingTransfer'
components:
  schemas:
    OnboardingTransfer:
      type: object
      properties:
        id:
          type: string
          format: uuid
        onboarding_id:
          type: string
          format: uuid
        status:
          type: string
          enum:
            - PENDING
            - COMPLETED
            - REVERSED
            - FAILED
        amount:
          $ref: '#/components/schemas/Amount'
        description:
          type: string
        created_at:
          type: string
          format: date-time
        updated_at:
          type: string
          format: date-time
    Amount:
      type: object
      required:
        - currency
        - value
      properties:
        currency:
          type: string
          description: ISO 4217 currency code
          example: BRL
        value:
          type: number
          description: >-
            Payment amount in major currency units (e.g., 150.00 means 150 BRL,
            not cents). For zero-decimal currencies like CLP and PYG, use whole
            numbers (e.g., 15000 means 15,000 CLP).
          example: 100
      example:
        currency: BRL
        value: 100
  securitySchemes:
    publicApiKey:
      type: apiKey
      in: header
      name: public-api-key
      description: Your public API key from the Yuno Dashboard
    privateSecretKey:
      type: apiKey
      in: header
      name: private-secret-key
      description: Your private secret key (server-side only)

````