> ## 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 liquidity pools



## OpenAPI

````yaml /reference/openapi.yaml get /liquidity-pools
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-pools:
    get:
      tags:
        - Liquidity
      summary: List liquidity pools
      responses:
        '200':
          description: OK
          content:
            application/json:
              schema:
                type: array
                items:
                  $ref: '#/components/schemas/LiquidityPool'
components:
  schemas:
    LiquidityPool:
      type: object
      properties:
        poolId:
          type: string
        poolType:
          type: string
          example: physical
        status:
          type: string
        currency:
          type: string
      required:
        - poolId
        - poolType
        - status
  securitySchemes:
    bearerAuth:
      type: http
      scheme: bearer
      bearerFormat: JWT

````