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

# Get Clmm Pools

> Get list of available CLMM pools for a connector.

Currently supports: meteora

Args:
    connector: CLMM connector (e.g., 'meteora')
    page: Page number (default: 0)
    limit: Results per page (default: 50, max: 100)
    search_term: Search term to filter pools (optional)
    sort_key: Sort by field (volume, tvl, feetvlratio, etc.)
    order_by: Sort order (asc, desc)
    include_unknown: Include pools with unverified tokens

Example:
    GET /gateway/clmm/pools?connector=meteora&search_term=SOL&limit=20

Returns:
    List of available pools with trading pairs, addresses, liquidity, volume, APR, etc.



## OpenAPI

````yaml /api-reference/openapi.json get /gateway/clmm/pools
openapi: 3.1.0
info:
  title: Hummingbot API
  description: API for managing Hummingbot trading instances
  version: 1.0.1
servers:
  - url: http://localhost:8000
    description: Local development server
security: []
paths:
  /gateway/clmm/pools:
    get:
      tags:
        - Gateway CLMM
      summary: Get Clmm Pools
      description: |-
        Get list of available CLMM pools for a connector.

        Currently supports: meteora

        Args:
            connector: CLMM connector (e.g., 'meteora')
            page: Page number (default: 0)
            limit: Results per page (default: 50, max: 100)
            search_term: Search term to filter pools (optional)
            sort_key: Sort by field (volume, tvl, feetvlratio, etc.)
            order_by: Sort order (asc, desc)
            include_unknown: Include pools with unverified tokens

        Example:
            GET /gateway/clmm/pools?connector=meteora&search_term=SOL&limit=20

        Returns:
            List of available pools with trading pairs, addresses, liquidity, volume, APR, etc.
      operationId: get_clmm_pools_gateway_clmm_pools_get
      parameters:
        - name: connector
          in: query
          required: true
          schema:
            type: string
            title: Connector
        - name: page
          in: query
          required: false
          schema:
            type: integer
            minimum: 0
            description: Page number
            default: 0
            title: Page
          description: Page number
        - name: limit
          in: query
          required: false
          schema:
            type: integer
            maximum: 100
            minimum: 1
            description: Results per page (max 100)
            default: 50
            title: Limit
          description: Results per page (max 100)
        - name: search_term
          in: query
          required: false
          schema:
            anyOf:
              - type: string
              - type: 'null'
            description: Search term to filter pools
            title: Search Term
          description: Search term to filter pools
        - name: sort_key
          in: query
          required: false
          schema:
            anyOf:
              - type: string
              - type: 'null'
            description: Sort key (volume, tvl, etc.)
            default: volume
            title: Sort Key
          description: Sort key (volume, tvl, etc.)
        - name: order_by
          in: query
          required: false
          schema:
            anyOf:
              - type: string
              - type: 'null'
            description: Sort order (asc, desc)
            default: desc
            title: Order By
          description: Sort order (asc, desc)
        - name: include_unknown
          in: query
          required: false
          schema:
            type: boolean
            description: Include pools with unverified tokens
            default: true
            title: Include Unknown
          description: Include pools with unverified tokens
      responses:
        '200':
          description: Successful Response
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/CLMMPoolListResponse'
        '422':
          description: Validation Error
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/HTTPValidationError'
      security:
        - HTTPBasic: []
components:
  schemas:
    CLMMPoolListResponse:
      properties:
        pools:
          items:
            $ref: '#/components/schemas/CLMMPoolListItem'
          type: array
          title: Pools
          description: List of available pools
        total:
          type: integer
          title: Total
          description: Total number of pools
        page:
          type: integer
          title: Page
          description: Current page number
        limit:
          type: integer
          title: Limit
          description: Results per page
      type: object
      required:
        - pools
        - total
        - page
        - limit
      title: CLMMPoolListResponse
      description: Response with list of available CLMM pools
    HTTPValidationError:
      properties:
        detail:
          items:
            $ref: '#/components/schemas/ValidationError'
          type: array
          title: Detail
      type: object
      title: HTTPValidationError
    CLMMPoolListItem:
      properties:
        address:
          type: string
          title: Address
          description: Pool address
        name:
          type: string
          title: Name
          description: Pool name (e.g., 'SOL-USDC')
        trading_pair:
          type: string
          title: Trading Pair
          description: Trading pair derived from tokens
        mint_x:
          type: string
          title: Mint X
          description: Base token mint address
        mint_y:
          type: string
          title: Mint Y
          description: Quote token mint address
        bin_step:
          type: integer
          title: Bin Step
          description: Bin step size
        current_price:
          type: string
          pattern: ^(?!^[-+.]*$)[+-]?0*\d*\.?\d*$
          title: Current Price
          description: Current pool price
        liquidity:
          type: string
          title: Liquidity
          description: Total liquidity in pool
        reserve_x:
          type: string
          title: Reserve X
          description: Base token reserves
        reserve_y:
          type: string
          title: Reserve Y
          description: Quote token reserves
        reserve_x_amount:
          anyOf:
            - type: string
              pattern: ^(?!^[-+.]*$)[+-]?0*\d*\.?\d*$
            - type: 'null'
          title: Reserve X Amount
          description: Base token reserves as decimal amount
        reserve_y_amount:
          anyOf:
            - type: string
              pattern: ^(?!^[-+.]*$)[+-]?0*\d*\.?\d*$
            - type: 'null'
          title: Reserve Y Amount
          description: Quote token reserves as decimal amount
        base_fee_percentage:
          anyOf:
            - type: string
            - type: 'null'
          title: Base Fee Percentage
          description: Base fee percentage
        max_fee_percentage:
          anyOf:
            - type: string
            - type: 'null'
          title: Max Fee Percentage
          description: Maximum fee percentage
        protocol_fee_percentage:
          anyOf:
            - type: string
            - type: 'null'
          title: Protocol Fee Percentage
          description: Protocol fee percentage
        apr:
          anyOf:
            - type: string
              pattern: ^(?!^[-+.]*$)[+-]?0*\d*\.?\d*$
            - type: 'null'
          title: Apr
          description: Annual percentage rate
        apy:
          anyOf:
            - type: string
              pattern: ^(?!^[-+.]*$)[+-]?0*\d*\.?\d*$
            - type: 'null'
          title: Apy
          description: Annual percentage yield
        farm_apr:
          anyOf:
            - type: string
              pattern: ^(?!^[-+.]*$)[+-]?0*\d*\.?\d*$
            - type: 'null'
          title: Farm Apr
          description: Farming annual percentage rate
        farm_apy:
          anyOf:
            - type: string
              pattern: ^(?!^[-+.]*$)[+-]?0*\d*\.?\d*$
            - type: 'null'
          title: Farm Apy
          description: Farming annual percentage yield
        volume_24h:
          anyOf:
            - type: string
              pattern: ^(?!^[-+.]*$)[+-]?0*\d*\.?\d*$
            - type: 'null'
          title: Volume 24H
          description: 24h trading volume
        fees_24h:
          anyOf:
            - type: string
              pattern: ^(?!^[-+.]*$)[+-]?0*\d*\.?\d*$
            - type: 'null'
          title: Fees 24H
          description: 24h fees collected
        today_fees:
          anyOf:
            - type: string
              pattern: ^(?!^[-+.]*$)[+-]?0*\d*\.?\d*$
            - type: 'null'
          title: Today Fees
          description: Today's fees collected
        cumulative_trade_volume:
          anyOf:
            - type: string
            - type: 'null'
          title: Cumulative Trade Volume
          description: Cumulative trade volume
        cumulative_fee_volume:
          anyOf:
            - type: string
            - type: 'null'
          title: Cumulative Fee Volume
          description: Cumulative fee volume
        volume:
          anyOf:
            - $ref: '#/components/schemas/TimeBasedMetrics'
            - type: 'null'
          description: Volume across different time periods
        fees:
          anyOf:
            - $ref: '#/components/schemas/TimeBasedMetrics'
            - type: 'null'
          description: Fees across different time periods
        fee_tvl_ratio:
          anyOf:
            - $ref: '#/components/schemas/TimeBasedMetrics'
            - type: 'null'
          description: Fee-to-TVL ratio across different time periods
        reward_mint_x:
          anyOf:
            - type: string
            - type: 'null'
          title: Reward Mint X
          description: Base token reward mint address
        reward_mint_y:
          anyOf:
            - type: string
            - type: 'null'
          title: Reward Mint Y
          description: Quote token reward mint address
        tags:
          anyOf:
            - items:
                type: string
              type: array
            - type: 'null'
          title: Tags
          description: Pool tags
        is_verified:
          type: boolean
          title: Is Verified
          description: Whether tokens are verified
          default: false
        is_blacklisted:
          anyOf:
            - type: boolean
            - type: 'null'
          title: Is Blacklisted
          description: Whether pool is blacklisted
        hide:
          anyOf:
            - type: boolean
            - type: 'null'
          title: Hide
          description: Whether pool should be hidden
        launchpad:
          anyOf:
            - type: string
            - type: 'null'
          title: Launchpad
          description: Associated launchpad
      type: object
      required:
        - address
        - name
        - trading_pair
        - mint_x
        - mint_y
        - bin_step
        - current_price
        - liquidity
        - reserve_x
        - reserve_y
      title: CLMMPoolListItem
      description: Individual pool item in CLMM pool listing
    ValidationError:
      properties:
        loc:
          items:
            anyOf:
              - type: string
              - type: integer
          type: array
          title: Location
        msg:
          type: string
          title: Message
        type:
          type: string
          title: Error Type
        input:
          title: Input
        ctx:
          type: object
          title: Context
      type: object
      required:
        - loc
        - msg
        - type
      title: ValidationError
    TimeBasedMetrics:
      properties:
        min_30:
          anyOf:
            - type: string
              pattern: ^(?!^[-+.]*$)[+-]?0*\d*\.?\d*$
            - type: 'null'
          title: Min 30
          description: 30 minute metric
        hour_1:
          anyOf:
            - type: string
              pattern: ^(?!^[-+.]*$)[+-]?0*\d*\.?\d*$
            - type: 'null'
          title: Hour 1
          description: 1 hour metric
        hour_2:
          anyOf:
            - type: string
              pattern: ^(?!^[-+.]*$)[+-]?0*\d*\.?\d*$
            - type: 'null'
          title: Hour 2
          description: 2 hour metric
        hour_4:
          anyOf:
            - type: string
              pattern: ^(?!^[-+.]*$)[+-]?0*\d*\.?\d*$
            - type: 'null'
          title: Hour 4
          description: 4 hour metric
        hour_12:
          anyOf:
            - type: string
              pattern: ^(?!^[-+.]*$)[+-]?0*\d*\.?\d*$
            - type: 'null'
          title: Hour 12
          description: 12 hour metric
        hour_24:
          anyOf:
            - type: string
              pattern: ^(?!^[-+.]*$)[+-]?0*\d*\.?\d*$
            - type: 'null'
          title: Hour 24
          description: 24 hour metric
      type: object
      title: TimeBasedMetrics
      description: >-
        Time-based metrics (volume, fees, fee-to-TVL ratio) for different time
        periods
  securitySchemes:
    HTTPBasic:
      type: http
      scheme: basic

````