> ## 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 Pool Info

> Get detailed information about a CLMM pool by pool address.

Args:
    connector: CLMM connector (e.g., 'meteora', 'raydium')
    network: Network ID in 'chain-network' format (e.g., 'solana-mainnet-beta')
    pool_address: Pool contract address

Example:
    GET /gateway/clmm/pool-info?connector=meteora&network=solana-mainnet-beta&pool_address=2sf5NYcY4zUPXUSmG6f66mskb24t5F8S11pC1Nz5nQT3

Returns:
    Pool information including liquidity, price, bins (for Meteora), etc.
    All field names are returned in snake_case format.

Note:
    For Raydium connector, uses Raydium API directly instead of Gateway.



## OpenAPI

````yaml /api-reference/openapi.json get /gateway/clmm/pool-info
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/pool-info:
    get:
      tags:
        - Gateway CLMM
      summary: Get Clmm Pool Info
      description: |-
        Get detailed information about a CLMM pool by pool address.

        Args:
            connector: CLMM connector (e.g., 'meteora', 'raydium')
            network: Network ID in 'chain-network' format (e.g., 'solana-mainnet-beta')
            pool_address: Pool contract address

        Example:
            GET /gateway/clmm/pool-info?connector=meteora&network=solana-mainnet-beta&pool_address=2sf5NYcY4zUPXUSmG6f66mskb24t5F8S11pC1Nz5nQT3

        Returns:
            Pool information including liquidity, price, bins (for Meteora), etc.
            All field names are returned in snake_case format.

        Note:
            For Raydium connector, uses Raydium API directly instead of Gateway.
      operationId: get_clmm_pool_info_gateway_clmm_pool_info_get
      parameters:
        - name: connector
          in: query
          required: true
          schema:
            type: string
            title: Connector
        - name: network
          in: query
          required: true
          schema:
            type: string
            title: Network
        - name: pool_address
          in: query
          required: true
          schema:
            type: string
            title: Pool Address
      responses:
        '200':
          description: Successful Response
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/CLMMPoolInfoResponse'
        '422':
          description: Validation Error
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/HTTPValidationError'
      security:
        - HTTPBasic: []
components:
  schemas:
    CLMMPoolInfoResponse:
      properties:
        address:
          type: string
          title: Address
          description: Pool address
        baseTokenAddress:
          type: string
          title: Basetokenaddress
          description: Base token contract address
        quoteTokenAddress:
          type: string
          title: Quotetokenaddress
          description: Quote token contract address
        binStep:
          anyOf:
            - type: integer
            - type: 'null'
          title: Binstep
          description: Bin step (Meteora DLMM only)
        feePct:
          type: string
          pattern: ^(?!^[-+.]*$)[+-]?0*\d*\.?\d*$
          title: Feepct
          description: Pool fee percentage
        price:
          type: string
          pattern: ^(?!^[-+.]*$)[+-]?0*\d*\.?\d*$
          title: Price
          description: Current pool price
        baseTokenAmount:
          type: string
          pattern: ^(?!^[-+.]*$)[+-]?0*\d*\.?\d*$
          title: Basetokenamount
          description: Total base token liquidity
        quoteTokenAmount:
          type: string
          pattern: ^(?!^[-+.]*$)[+-]?0*\d*\.?\d*$
          title: Quotetokenamount
          description: Total quote token liquidity
        activeBinId:
          anyOf:
            - type: integer
            - type: 'null'
          title: Activebinid
          description: Currently active bin ID (Meteora DLMM only)
        dynamicFeePct:
          anyOf:
            - type: string
              pattern: ^(?!^[-+.]*$)[+-]?0*\d*\.?\d*$
            - type: 'null'
          title: Dynamicfeepct
          description: Dynamic fee percentage
        minBinId:
          anyOf:
            - type: integer
            - type: 'null'
          title: Minbinid
          description: Minimum bin ID (Meteora-specific)
        maxBinId:
          anyOf:
            - type: integer
            - type: 'null'
          title: Maxbinid
          description: Maximum bin ID (Meteora-specific)
        bins:
          items:
            $ref: '#/components/schemas/CLMMPoolBin'
          type: array
          title: Bins
          description: List of bins with liquidity
      type: object
      required:
        - address
        - baseTokenAddress
        - quoteTokenAddress
        - feePct
        - price
        - baseTokenAmount
        - quoteTokenAmount
      title: CLMMPoolInfoResponse
      description: Response with detailed CLMM pool information
      example:
        active_bin_id: -374
        address: 5hbf9JP8k5zdrZp9pokPypFQoBse5mGCmW6nqodurGcd
        base_token_address: METvsvVRapdj9cFLzq4Tr43xK4tAjQfwX76z3n6mWQL
        base_token_amount: 8645709.142366
        bin_step: 20
        bins: []
        dynamic_fee_pct: 0.2
        fee_pct: 0.2
        max_bin_id: 21835
        min_bin_id: -21835
        price: 0.47366592950616504
        quote_token_address: EPjFWdd5AufqSSqeM2qN1xzybapC8G4wEGGkZwyTDt1v
        quote_token_amount: 1095942.335132
    HTTPValidationError:
      properties:
        detail:
          items:
            $ref: '#/components/schemas/ValidationError'
          type: array
          title: Detail
      type: object
      title: HTTPValidationError
    CLMMPoolBin:
      properties:
        binId:
          type: integer
          title: Binid
          description: Bin identifier
        price:
          type: string
          pattern: ^(?!^[-+.]*$)[+-]?0*\d*\.?\d*$
          title: Price
          description: Price at this bin
        baseTokenAmount:
          type: string
          pattern: ^(?!^[-+.]*$)[+-]?0*\d*\.?\d*$
          title: Basetokenamount
          description: Base token amount in bin
        quoteTokenAmount:
          type: string
          pattern: ^(?!^[-+.]*$)[+-]?0*\d*\.?\d*$
          title: Quotetokenamount
          description: Quote token amount in bin
      type: object
      required:
        - binId
        - price
        - baseTokenAmount
        - quoteTokenAmount
      title: CLMMPoolBin
      description: Individual bin in a CLMM pool (e.g., Meteora)
      example:
        base_token_amount: 19656.740028
        bin_id: -374
        price: 0.47366592950616504
        quote_token_amount: 18197.718539
    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
  securitySchemes:
    HTTPBasic:
      type: http
      scheme: basic

````