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

# List payouts

> List an account's pay-outs, both API-created and customer-initiated.

**Requires scope:** `manage:pay-outs` — see [Required scopes](/getting-started/authentication#required-scopes-finance-api).

Lists the account's pay-outs — both PULL (created via the API) and PUSH (created from an observed customer deposit), distinguished by `fundingMode`.

Returns compact summaries: the nested `payoutRoute` is route-only, with no beneficiary and no deposit address. Use [Get a payout](/api-reference/Finance-API/payouts/get-a-payout) for the full shape.

<Note>`sortOn` accepts only `createdAt`, `status` and `cryptoAmount`. Any other value returns `400`.</Note>


## OpenAPI

````yaml api-reference/Finance-API-Specs.yaml GET /accounts/{accountId}/payouts
openapi: 3.1.0
info:
  title: Venly Finance API
  description: >
    REST API for the Venly Finance platform:

    - Party management (Individuals & Organisations)

    - Identity verification — hosted KYC/KYB links and Sumsub share-token
    forwarding

    - Account management with party association

    - Wallet balances & token allowances on supported chains

    - Virtual bank accounts for global pay-in (EUR SEPA, USD ACH/WIRE/RTP/SWIFT)

    - Fiat-to-crypto payment sessions (pay-in)

    - Bank pay-outs — beneficiary allow-listing, routes, and PULL/PUSH pay-outs

    - Account-to-account fiat & crypto transfers

    - EIP-2612 permits and allowances

    - Webhook registration for asynchronous event delivery


    ## Authentication


    All endpoints use OAuth2 client credentials. Obtain a token first, then
    include it in every request:


    **Step 1 — Get a token:**

    ```bash

    curl -X POST
    https://login.venly.io/auth/realms/VenlyFinance/protocol/openid-connect/token
    \
      -H "Content-Type: application/x-www-form-urlencoded" \
      -d "grant_type=client_credentials&client_id={CLIENT_ID}&client_secret={CLIENT_SECRET}"
    ```


    **Step 2 — Use the token:**

    ```

    Authorization: Bearer {access_token}

    ```


    Tokens expire after **5 minutes**. Implement refresh logic in your client.
  version: 1.5.0
  contact:
    name: Venly Support
    email: support@venly.io
    url: https://docs.venlyfinance.com
  license:
    name: Proprietary
  x-logo:
    url: https://venlyfinance.com/logo.png
  x-security-contact: security@venly.io
servers:
  - url: https://api.venlyfinance.com/v1
    description: Production
  - url: https://api-staging.venlyfinance.com/v1
    description: Staging
security:
  - OAuth2: []
tags:
  - name: Parties
    description: Party management (Individuals & Organisations)
  - name: Accounts
    description: Account management, party-role associations
  - name: Wallets
    description: Blockchain wallet balances
  - name: Virtual Bank Accounts
    description: Virtual bank account payment references for global payments
  - name: Fiat-to-crypto Payment Sessions
    description: Fiat-to-crypto payment session creation
  - name: Payout Bank Accounts
    description: Allow-listing beneficiary bank accounts as pay-out destinations
  - name: Payout Routes
    description: >-
      Account-scoped routes pairing a beneficiary bank account with a crypto
      deposit asset
  - name: Payouts
    description: Crypto-to-fiat pay-outs over a registered route
  - name: Transfers
    description: Fiat and crypto transfer operations between accounts
  - name: Permits
    description: EIP-712 permit signature management for token approvals
  - name: Supported Assets
    description: >-
      Discover which chains and assets your tenant can settle in, and whether an
      account can use them yet.
  - name: Allowances
    description: Token allowance management for wallets
  - name: Webhooks
    description: Webhook registration and delivery testing
paths:
  /accounts/{accountId}/payouts:
    get:
      tags:
        - Payouts
      summary: List payouts
      description: >
        **Requires scope:** `manage:pay-outs`


        Lists the account's pay-outs — both PULL (API-created) and PUSH (created
        from an observed

        customer deposit), distinguished by `fundingMode`.


        Returns compact summaries: the nested `payoutRoute` is route-only, with
        no beneficiary and no

        deposit address. Use [Get a
        payout](/api-reference/Finance-API/payouts/get-a-payout) for the

        full shape.


        Sortable on `createdAt`, `status` and `cryptoAmount` only.
      operationId: listPayouts
      parameters:
        - $ref: '#/components/parameters/AccountId'
        - name: status
          in: query
          required: false
          description: Restrict the list to a single payout status
          schema:
            $ref: '#/components/schemas/PayoutStatus'
        - $ref: '#/components/parameters/Page'
        - $ref: '#/components/parameters/Size'
        - $ref: '#/components/parameters/SortOn'
        - $ref: '#/components/parameters/SortOrder'
      responses:
        '200':
          description: >-
            Paginated list of payout summaries. Empty for pages beyond the data
            or filters with no matches.
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/PayoutListResponse'
              example:
                success: true
                result:
                  - id: c3d4e5f6-0718-492a-b3c4-d5e6f708192a
                    accountId: b2a1f0e9-8c7d-4e3a-9f21-0a1b2c3d4e5f
                    payoutRoute:
                      id: b2c3d4e5-f607-4819-a2b3-c4d5e6f70819
                      depositAsset:
                        chain: BASE
                        name: USDC
                      fiatCurrency: USD
                      status: ACTIVE
                    rail: US_ACH
                    cryptoAmount: 100
                    settledFiatAmount: 99.5
                    fundingMode: PULL
                    status: COMPLETED
                    sendTxHash: >-
                      0xa1b2c3d4e5f6a7b8c9d0e1f2a3b4c5d6e7f8a9b0c1d2e3f4a5b6c7d8e9f0a1b2
                    requestedAt: '2026-07-14T11:00:00Z'
                    completedAt: '2026-07-14T11:04:12Z'
                    failureReason: null
                pagination:
                  pageNumber: 1
                  pageSize: 20
                  numberOfElements: 1
                  numberOfPages: 1
                  hasNextPage: false
                  hasPreviousPage: false
        '400':
          description: >-
            Invalid pagination or sort parameters. `sortOn` must be `createdAt`,
            `status` or `cryptoAmount`.
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/ErrorResponse'
        '401':
          $ref: '#/components/responses/Unauthorized'
        '403':
          description: Forbidden — the caller lacks the `manage:pay-outs` role.
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/ErrorResponse'
        '404':
          $ref: '#/components/responses/NotFound'
        '500':
          $ref: '#/components/responses/InternalServerError'
components:
  parameters:
    AccountId:
      name: accountId
      in: path
      required: true
      description: Unique account identifier
      schema:
        type: string
        format: uuid
      example: b2a1f0e9-8c7d-4e3a-9f21-0a1b2c3d4e5f
    Page:
      name: page
      in: query
      description: Page number (1-based indexing)
      required: false
      schema:
        type: integer
        format: int32
        default: 1
        minimum: 1
      example: 1
    Size:
      name: size
      in: query
      description: Number of items per page
      required: false
      schema:
        type: integer
        format: int32
        default: 100
        minimum: 1
      example: 20
    SortOn:
      name: sortOn
      in: query
      description: Field to sort by
      required: false
      schema:
        type: string
        default: createdAt
      example: createdAt
    SortOrder:
      name: sortOrder
      in: query
      description: Sort direction
      required: false
      schema:
        type: string
        default: ASC
        enum:
          - ASC
          - DESC
      example: DESC
  schemas:
    PayoutStatus:
      type: string
      description: >
        Pay-out lifecycle. The PULL happy path is

        `REQUESTED → SENDING → PROVIDER_PROCESSING → COMPLETED`; PUSH pay-outs
        start at

        `PROVIDER_PROCESSING`. Note that a fiat leg can still bounce after
        completion

        (`COMPLETED → RETURNED`).

        - `REQUESTED` — created via the API; awaiting dispatch of the managed
        send leg. PULL only

        - `SENDING` — the managed on-chain send is in flight. PULL only

        - `PROVIDER_PROCESSING` — funds reached the provider deposit address;
        awaiting the fiat pay-out

        - `COMPLETED` — the provider reported the fiat pay-out as completed;
        `settledFiatAmount` is set

        - `REJECTED` — request validation failed before dispatch. PULL only.
        Terminal

        - `FAILED` — the managed send leg failed terminally. PULL only. Terminal

        - `RETURNED` — the provider reported the fiat leg as bounced or
        returned. Terminal
      enum:
        - REQUESTED
        - SENDING
        - PROVIDER_PROCESSING
        - COMPLETED
        - REJECTED
        - FAILED
        - RETURNED
    PayoutListResponse:
      allOf:
        - $ref: '#/components/schemas/BaseResponse'
        - type: object
          properties:
            result:
              type: array
              items:
                $ref: '#/components/schemas/PayoutSummary'
            pagination:
              $ref: '#/components/schemas/Pagination'
    ErrorResponse:
      type: object
      description: Error response wrapper
      properties:
        success:
          type: boolean
          description: Always false for error responses
          example: false
        errors:
          type: array
          description: List of errors that occurred
          items:
            $ref: '#/components/schemas/ErrorBody'
        result:
          type: object
          nullable: true
          description: Null or omitted when success is false
    BaseResponse:
      type: object
      properties:
        success:
          type: boolean
          description: Indicates whether the request was successful
    PayoutSummary:
      type: object
      description: >
        Compact pay-out list item — the same top-level fields as `Payout`, but
        with a route-only

        `payoutRoute`.
      properties:
        id:
          type: string
          format: uuid
        accountId:
          type: string
          format: uuid
        payoutRoute:
          $ref: '#/components/schemas/PayoutRouteSummary'
        rail:
          allOf:
            - $ref: '#/components/schemas/PayoutRail'
          nullable: true
        cryptoAmount:
          type: number
          example: 100
        settledFiatAmount:
          type: number
          nullable: true
          example: 99.5
        fundingMode:
          $ref: '#/components/schemas/FundingMode'
        status:
          $ref: '#/components/schemas/PayoutStatus'
        sendTxHash:
          type: string
          nullable: true
        requestedAt:
          type: string
          format: date-time
        completedAt:
          type: string
          format: date-time
          nullable: true
        failureReason:
          type: string
          nullable: true
    Pagination:
      type: object
      description: Pagination metadata (top-level sibling of `result`)
      properties:
        pageNumber:
          type: integer
          format: int32
          description: Current page number (1-based)
        pageSize:
          type: integer
          format: int32
          description: Number of items per page
        numberOfElements:
          type: integer
          format: int64
          description: Total number of items across all pages
        numberOfPages:
          type: integer
          format: int32
          description: Total number of pages
        hasNextPage:
          type: boolean
          description: Whether there is a next page
        hasPreviousPage:
          type: boolean
          description: Whether there is a previous page
    ErrorBody:
      type: object
      description: Individual error details
      properties:
        code:
          type: string
          description: Machine-readable error code
          example: invalid-request
        message:
          type: string
          description: Human-readable error message
          example: The request contains invalid parameters.
    PayoutRouteSummary:
      type: object
      description: >
        Compact route reference inside a pay-out list item — route-only, with no
        beneficiary and no

        deposit address.
      properties:
        id:
          type: string
          format: uuid
        depositAsset:
          $ref: '#/components/schemas/DepositAsset'
        fiatCurrency:
          type: string
          example: USD
        status:
          $ref: '#/components/schemas/PayoutRouteStatus'
    PayoutRail:
      type: string
      description: |
        The fiat rail a payout bank account settles over.
        - `US_ACH` — US ACH transfer. Requires `fiatCurrency: USD`.
      enum:
        - US_ACH
    FundingMode:
      type: string
      description: >
        How a pay-out is funded on-chain.

        - `PULL` — Venly sends from the account wallet using the up-front
        permit. Created via the API

        - `PUSH` — the customer already sent to the route's deposit address
        themselves. Created from the
          observed deposit; self-custody only
      enum:
        - PULL
        - PUSH
    DepositAsset:
      type: object
      description: >-
        The crypto asset a customer sends to fund a route — a (chain, name)
        pair.
      required:
        - chain
        - name
      properties:
        chain:
          $ref: '#/components/schemas/BlockchainNetwork'
        name:
          type: string
          maxLength: 50
          description: Crypto asset name
          example: USDC
    PayoutRouteStatus:
      type: string
      description: >
        Lifecycle of a payout route. Only `ACTIVE` routes can be used for
        pay-outs or as PUSH deposit

        addresses.

        - `PENDING` — created; provider registration not yet started

        - `REGISTERING` — provider registration in progress

        - `AWAITING_OWNERSHIP_PROOF` — waiting for the owner of a self-custody
        source wallet to sign
          a wallet-ownership proof. Registration is paused until you submit it — see
          [Submit a pay-out route ownership proof](/api-reference/Finance-API/payout-routes/submit-a-route-ownership-proof).
          This is the only status that needs an action from you.
        - `ACTIVE` — registered; `depositAddress` populated

        - `REJECTED` — registration failed terminally or was rejected
      enum:
        - PENDING
        - REGISTERING
        - AWAITING_OWNERSHIP_PROOF
        - ACTIVE
        - REJECTED
    BlockchainNetwork:
      type: string
      description: >
        Supported blockchain network. Availability per chain depends on your
        company's configured

        `supportedChains` — see [Supported chains and
        assets](/guides/finance/supported-chains-and-assets).
      enum:
        - AVALANCHE
        - BASE
        - ETHEREUM
        - POLYGON
        - SOLANA
  responses:
    Unauthorized:
      description: Authentication required or failed (401)
      content:
        application/json:
          schema:
            $ref: '#/components/schemas/ErrorResponse'
          example:
            success: false
            errors:
              - code: unauthenticated
                message: Please authenticate to perform this action.
    NotFound:
      description: Resource not found (404)
      content:
        application/json:
          schema:
            $ref: '#/components/schemas/ErrorResponse'
          example:
            success: false
            errors:
              - code: account-not-found
                message: The requested resource was not found.
    InternalServerError:
      description: Unexpected server error (500)
      content:
        application/json:
          schema:
            $ref: '#/components/schemas/ErrorResponse'
          example:
            success: false
            errors:
              - code: internal-error
                message: An unexpected error occurred. Please try again later.
  securitySchemes:
    OAuth2:
      type: oauth2
      description: >
        OAuth2 client credentials flow. Token endpoints:

        - Staging:
        https://login-staging.venly.io/auth/realms/VenlyFinance/protocol/openid-connect/token

        - Production:
        https://login.venly.io/auth/realms/VenlyFinance/protocol/openid-connect/token
      flows:
        clientCredentials:
          tokenUrl: >-
            https://login-staging.venly.io/auth/realms/VenlyFinance/protocol/openid-connect/token
          scopes: {}

````