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

# List sweep instructions



## OpenAPI

````yaml /reference/openapi.yaml get /liquidity-sweeps
openapi: 3.1.0
info:
  title: Finpace Core and AI Runtime API
  version: 1.0.0
  description: >-
    Core platform API for Finpace Halcyon covering customer, product, account,
    payment, lending, workflow, interaction, notification, and governed AI
    runtime capabilities.
servers:
  - url: https://api.finpace.tech
    description: Illustrative production endpoint
security:
  - bearerAuth: []
tags:
  - name: Parties
  - name: Customers
  - name: Agreements
  - name: Entitlements
  - name: Products
  - name: Pricing
  - name: Campaigns
  - name: Channels
  - name: Interactions
  - name: Accounts
  - name: Balances
  - name: Payments
  - name: Liquidity
  - name: Lending
  - name: Collateral
  - name: Cases
  - name: Documents
  - name: Notifications
  - name: AI Runtime
  - name: Events
  - name: Operations
paths:
  /liquidity-sweeps:
    get:
      tags:
        - Liquidity
      summary: List sweep instructions
      responses:
        '200':
          description: OK
          content:
            application/json:
              schema:
                type: array
                items:
                  $ref: '#/components/schemas/SweepInstruction'
components:
  schemas:
    SweepInstruction:
      type: object
      properties:
        sweepId:
          type: string
        poolId:
          type: string
        status:
          type: string
        targetBalance:
          $ref: '#/components/schemas/Money'
      required:
        - sweepId
        - poolId
        - status
    Money:
      type: object
      properties:
        currency:
          type: string
          example: EUR
        amount:
          type: string
          example: '1250.00'
      required:
        - currency
        - amount
  securitySchemes:
    bearerAuth:
      type: http
      scheme: bearer
      bearerFormat: JWT

````