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

# List Pix transfers for an account

> Returns a cursor-paginated page of transfers for the calling account.



## OpenAPI

````yaml en/openapi/v3-current/pix-lerian-spi.yaml GET /transfers
openapi: 3.1.0
info:
  contact:
    name: Lerian Studio
    url: https://lerian.studio
  description: Public API for outbound Pix transfers and refunds.
  license:
    name: Elastic License 2.0
    url: https://www.elastic.co/licensing/elastic-license
  title: Pix Lerian — Payments
  version: release-candidate
servers:
  - url: https://api.example.com/spi/v1
    description: >-
      Replace the example host with the URL provided during environment
      onboarding.
security:
  - BearerAuth: []
tags:
  - description: Initiate, process, list, and retrieve outbound Pix transfers.
    name: Transfers
  - description: Create, list, and retrieve Pix refunds.
    name: Refunds
paths:
  /transfers:
    get:
      tags:
        - Transfers
      summary: List Pix transfers for an account
      description: Returns a cursor-paginated page of transfers for the calling account.
      operationId: listTransfers
      parameters:
        - description: UUID of the account associated with the operation.
          in: header
          name: X-Account-Id
          required: true
          schema:
            description: UUID of the account associated with the operation.
            examples:
              - 019606a1-3b4c-7d8e-9f01-234567890abc
            type: string
          example: 019606a1-3b4c-7d8e-9f01-234567890abc
        - description: Filter by transfer status (lowercase)
          explode: false
          in: query
          name: status
          schema:
            description: Filter by transfer status (lowercase)
            examples:
              - processing
            type: string
          example: processing
        - description: Filter by direction (lowercase, outbound only)
          explode: false
          in: query
          name: direction
          schema:
            description: Filter by direction (lowercase, outbound only)
            examples:
              - out
            type: string
          example: out
        - description: Filter by BCB end-to-end ID (32 chars)
          explode: false
          in: query
          name: end_to_end_id
          schema:
            description: Filter by BCB end-to-end ID (32 chars)
            examples:
              - E12345678202605061030abcdef12345
            type: string
          example: E12345678202605061030abcdef12345
        - description: Opaque cursor returned by the previous page
          explode: false
          in: query
          name: after
          schema:
            description: Opaque cursor returned by the previous page
            type: string
          example: after-example
        - description: Page size (1-100, default 20)
          explode: false
          in: query
          name: limit
          schema:
            description: Page size (1-100, default 20)
            examples:
              - '20'
            type: string
          example: '20'
      responses:
        '200':
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/TransfersListOutput'
              examples:
                fictitiousExample:
                  summary: Fictitious example
                  value:
                    items:
                      - accountId: 019606a0-1a2b-7c3d-8e4f-567890123abc
                        aliasId: 019606a1-3b4c-7d8e-9f01-234567890abc
                        amount: '100.00'
                        createdAt: '2026-05-06T10:30:00Z'
                        currency: BRL
                        description: Pagamento de aluguel
                        destination:
                          account:
                            branch: '0001'
                            number: '0007654321'
                            participant: '87654321'
                            type: CACC
                          key: '+5511999998888'
                          owner:
                            document: '12345678901'
                            name: João da Silva
                            tradeName: Empresa Exemplo LTDA
                            type: NATURAL_PERSON
                        endToEndId: E12345678202605061030abcdef12345
                        feeCharge:
                          applied: true
                          calculationType: FIXED
                          fees:
                            - amount: '1.50'
                              calculationType: FIXED
                              calculationValue: '1.50'
                              creditAccount: 019606a3-5d6e-7f80-1a2b-345678901bcd
                              feeLabel: PIX_TRANSFER_FEE
                          netAmount: '98.50'
                          totalAmount: '1.50'
                        id: 019606a2-4c5d-7e8f-90a1-345678901bcd
                        initiatedAt: '2026-05-06T10:30:00Z'
                        initiationType: DICT
                        ledger:
                          destinationOperationId: 019606a5-7f80-7182-3c4d-56789012cdf1
                          revert:
                            destinationOperationId: 019606a5-7f80-7182-3c4d-56789012cdf1
                            sourceOperationId: 019606a5-7f80-7182-3c4d-56789012cdf0
                            transactionId: 019606a5-7f80-7182-3c4d-56789012cdef
                          sourceOperationId: 019606a5-7f80-7182-3c4d-56789012cdf0
                          transactionId: 019606a5-7f80-7182-3c4d-56789012cdef
                        metadata:
                          field: field-example
                        paymentType: PIX
                        purpose: IACT
                        source:
                          account:
                            branch: '0001'
                            number: '0007654321'
                            participant: '87654321'
                            type: CACC
                          key: '+5511999998888'
                          owner:
                            document: '12345678901'
                            name: João da Silva
                            tradeName: Empresa Exemplo LTDA
                            type: NATURAL_PERSON
                        status: COMPLETED
                        type: OUTBOUND
                        updatedAt: '2026-05-06T10:30:05Z'
                        urgency: HIGH
                    next_cursor: >-
                      eyJpZCI6IjAxOTYwNmEyLTRjNWQtN2U4Zi05MGExLTM0NTY3ODkwMTJjZCJ9
                    prev_cursor: >-
                      eyJpZCI6IjAxOTYwNmEyLTRjNWQtN2U4Zi05MGExLTM0NTY3ODkwMTJjY30=
          description: OK
        default:
          content:
            application/problem+json:
              schema:
                $ref: '#/components/schemas/Detail'
          description: Error
      x-codeSamples:
        - lang: bash
          label: cURL with fictitious data
          source: |-
            curl --request GET \
              --url https://api.example.com/spi/v1/transfers \
              --header 'Authorization: Bearer demo-access-token' \
              --header 'X-Account-Id: 019606a1-3b4c-7d8e-9f01-234567890abc'
components:
  schemas:
    TransfersListOutput:
      additionalProperties: false
      properties:
        items:
          items:
            $ref: '#/components/schemas/TransferResponse'
          type:
            - array
            - 'null'
        next_cursor:
          examples:
            - eyJpZCI6IjAxOTYwNmEyLTRjNWQtN2U4Zi05MGExLTM0NTY3ODkwMTJjZCJ9
          type: string
        prev_cursor:
          examples:
            - eyJpZCI6IjAxOTYwNmEyLTRjNWQtN2U4Zi05MGExLTM0NTY3ODkwMTJjY30=
          type: string
      required:
        - items
      type: object
    Detail:
      additionalProperties: false
      properties:
        code:
          description: >-
            Stable, machine-readable domain error code scoped to the emitting
            service (format: <SERVICE>-NNNN).
          examples:
            - ERR-0001
          type: string
        detail:
          description: >-
            A human-readable explanation specific to this occurrence of the
            problem.
          examples:
            - Property foo is required but is missing.
          type: string
        errors:
          description: Optional list of individual error details
          items:
            $ref: '#/components/schemas/ErrorDetail'
          type:
            - array
            - 'null'
        instance:
          description: >-
            A URI reference that identifies the specific occurrence of the
            problem.
          examples:
            - https://example.com/error-log/abc123
          format: uri
          type: string
        status:
          description: HTTP status code
          examples:
            - 400
          format: int64
          type: integer
        title:
          description: >-
            A short, human-readable summary of the problem type. This value
            should not change between occurrences of the error.
          examples:
            - Bad Request
          type: string
        type:
          default: about:blank
          description: A URI reference to human-readable documentation for the error.
          examples:
            - https://example.com/errors/example
          format: uri
          type: string
        upstream:
          $ref: '#/components/schemas/Upstream'
          description: >-
            RFC 9457 extension member: the error a proxied third-party provider
            reported. Absent unless the emitting service explicitly surfaced
            one.
      type: object
    TransferResponse:
      additionalProperties: false
      properties:
        accountId:
          examples:
            - 019606a0-1a2b-7c3d-8e4f-567890123abc
          type: string
        aliasId:
          type: string
        alreadyRefundedAmount:
          description: >-
            Cross-mechanism settled and reserved refund amount. Returned only
            for INBOUND transfers.
          examples:
            - '60.00'
          type: string
        amount:
          examples:
            - '100.00'
          type: string
        createdAt:
          examples:
            - '2026-05-06T10:30:00Z'
          format: date-time
          type: string
        currency:
          examples:
            - BRL
          type: string
        deletedAt:
          format: date-time
          type: string
        description:
          examples:
            - Pagamento de aluguel
          type: string
        destination:
          $ref: '#/components/schemas/SourceDestination'
        endToEndId:
          examples:
            - E12345678202605061030abcdef12345
          type: string
        feeCharge:
          $ref: '#/components/schemas/FeeChargeResponse'
        id:
          examples:
            - 019606a2-4c5d-7e8f-90a1-345678901bcd
          type: string
        initiatedAt:
          examples:
            - '2026-05-06T10:30:00Z'
          format: date-time
          type: string
        initiationType:
          examples:
            - DICT
          type: string
        ledger:
          $ref: '#/components/schemas/LedgerInfo'
        metadata:
          additionalProperties: {}
          type: object
        paymentType:
          examples:
            - PIX
          type: string
        purpose:
          examples:
            - IACT
          type: string
        remainingRefundableAmount:
          description: >-
            Amount minus alreadyRefundedAmount. Returned only for INBOUND
            transfers and can be negative.
          examples:
            - '40.00'
          type: string
        source:
          $ref: '#/components/schemas/SourceDestination'
        status:
          examples:
            - COMPLETED
          type: string
        type:
          examples:
            - OUTBOUND
          type: string
        updatedAt:
          examples:
            - '2026-05-06T10:30:05Z'
          format: date-time
          type: string
        urgency:
          examples:
            - HIGH
          type: string
      required:
        - id
        - endToEndId
        - status
        - type
        - amount
        - createdAt
        - updatedAt
      type: object
    ErrorDetail:
      additionalProperties: false
      properties:
        location:
          description: >-
            Where the error occurred, e.g. 'body.items[3].tags' or
            'path.thing-id'
          type: string
        message:
          description: Error message text
          type: string
        value:
          description: The value at the given location
      type: object
    Upstream:
      additionalProperties: false
      properties:
        code:
          description: The upstream provider's own error code, verbatim.
          examples:
            - E4001
          type: string
        message:
          description: >-
            The upstream provider's own error message, verbatim (bounded, never
            its raw response body).
          examples:
            - account not found at provider
          type: string
      type: object
    SourceDestination:
      additionalProperties: false
      properties:
        account:
          $ref: '#/components/schemas/AccountDetails'
        key:
          examples:
            - '+5511999998888'
          type: string
        owner:
          $ref: '#/components/schemas/OwnerDetails'
      type: object
    FeeChargeResponse:
      additionalProperties: false
      properties:
        applied:
          examples:
            - true
          type: boolean
        calculationType:
          examples:
            - FIXED
          type: string
        fees:
          items:
            $ref: '#/components/schemas/FeeEntryResponse'
          type:
            - array
            - 'null'
        netAmount:
          examples:
            - '98.50'
          type: string
        totalAmount:
          examples:
            - '1.50'
          type: string
      required:
        - applied
      type: object
    LedgerInfo:
      additionalProperties: false
      properties:
        destinationOperationId:
          examples:
            - 019606a5-7f80-7182-3c4d-56789012cdf1
          type: string
        revert:
          $ref: '#/components/schemas/LedgerRevertInfo'
        sourceOperationId:
          examples:
            - 019606a5-7f80-7182-3c4d-56789012cdf0
          type: string
        transactionId:
          examples:
            - 019606a5-7f80-7182-3c4d-56789012cdef
          type: string
      type: object
    AccountDetails:
      additionalProperties: false
      properties:
        branch:
          examples:
            - '0001'
          type: string
        number:
          examples:
            - '0007654321'
          type: string
        participant:
          examples:
            - '87654321'
          type: string
        type:
          examples:
            - CACC
          type: string
      required:
        - branch
        - number
        - participant
        - type
      type: object
    OwnerDetails:
      additionalProperties: false
      properties:
        document:
          examples:
            - '12345678901'
          type: string
        name:
          examples:
            - João da Silva
          type: string
        tradeName:
          examples:
            - Empresa Exemplo LTDA
          type: string
        type:
          examples:
            - NATURAL_PERSON
          type: string
      required:
        - document
        - name
      type: object
    FeeEntryResponse:
      additionalProperties: false
      properties:
        amount:
          examples:
            - '1.50'
          type: string
        calculationType:
          examples:
            - FIXED
          type: string
        calculationValue:
          examples:
            - '1.50'
          type: string
        creditAccount:
          examples:
            - 019606a3-5d6e-7f80-1a2b-345678901bcd
          type: string
        feeLabel:
          examples:
            - PIX_TRANSFER_FEE
          type: string
      required:
        - feeLabel
        - amount
      type: object
    LedgerRevertInfo:
      additionalProperties: false
      properties:
        destinationOperationId:
          examples:
            - 019606a5-7f80-7182-3c4d-56789012cdf1
          type: string
        sourceOperationId:
          examples:
            - 019606a5-7f80-7182-3c4d-56789012cdf0
          type: string
        transactionId:
          examples:
            - 019606a5-7f80-7182-3c4d-56789012cdef
          type: string
      type: object
  securitySchemes:
    BearerAuth:
      bearerFormat: JWT
      description: JWT bearer token issued by the identity provider.
      scheme: bearer
      type: http

````