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

> Get a single CLMM position by its address.

Mirrors Gateway's GET /trading/clmm/position-info. Gateway reports a missing
or closed position as an error (500/404), surfaced here as 404.



## OpenAPI

````yaml /api-reference/openapi.json get /gateway/clmm/position-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/position-info:
    get:
      tags:
        - Gateway CLMM
      summary: Get Clmm Position Info
      description: >-
        Get a single CLMM position by its address.


        Mirrors Gateway's GET /trading/clmm/position-info. Gateway reports a
        missing

        or closed position as an error (500/404), surfaced here as 404.
      operationId: get_clmm_position_info_gateway_clmm_position_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: position_address
          in: query
          required: true
          schema:
            type: string
            title: Position Address
      responses:
        '200':
          description: Successful Response
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/CLMMPositionInfo'
        '422':
          description: Validation Error
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/HTTPValidationError'
      security:
        - HTTPBasic: []
components:
  schemas:
    CLMMPositionInfo:
      properties:
        position_address:
          type: string
          title: Position Address
          description: Position address
        pool_address:
          type: string
          title: Pool Address
          description: Pool address
        trading_pair:
          type: string
          title: Trading Pair
          description: Trading pair (address-derived identifiers, not symbols)
        base_token:
          type: string
          title: Base Token
          description: Base token identifier (derived from the token address; not a symbol)
        quote_token:
          type: string
          title: Quote Token
          description: >-
            Quote token identifier (derived from the token address; not a
            symbol)
        base_token_amount:
          type: string
          pattern: ^(?!^[-+.]*$)[+-]?0*\d*\.?\d*$
          title: Base Token Amount
          description: Base token amount in position
        quote_token_amount:
          type: string
          pattern: ^(?!^[-+.]*$)[+-]?0*\d*\.?\d*$
          title: Quote Token Amount
          description: Quote token amount in position
        current_price:
          type: string
          pattern: ^(?!^[-+.]*$)[+-]?0*\d*\.?\d*$
          title: Current Price
          description: Current pool price
        lower_price:
          type: string
          pattern: ^(?!^[-+.]*$)[+-]?0*\d*\.?\d*$
          title: Lower Price
          description: Lower price bound
        upper_price:
          type: string
          pattern: ^(?!^[-+.]*$)[+-]?0*\d*\.?\d*$
          title: Upper Price
          description: Upper price bound
        base_fee_amount:
          anyOf:
            - type: string
              pattern: ^(?!^[-+.]*$)[+-]?0*\d*\.?\d*$
            - type: 'null'
          title: Base Fee Amount
          description: Base token uncollected fees
        quote_fee_amount:
          anyOf:
            - type: string
              pattern: ^(?!^[-+.]*$)[+-]?0*\d*\.?\d*$
            - type: 'null'
          title: Quote Fee Amount
          description: Quote token uncollected fees
        lower_bin_id:
          anyOf:
            - type: integer
            - type: 'null'
          title: Lower Bin Id
          description: Lower bin ID (Meteora)
        upper_bin_id:
          anyOf:
            - type: integer
            - type: 'null'
          title: Upper Bin Id
          description: Upper bin ID (Meteora)
        in_range:
          type: boolean
          title: In Range
          description: Whether position is currently in range
      type: object
      required:
        - position_address
        - pool_address
        - trading_pair
        - base_token
        - quote_token
        - base_token_amount
        - quote_token_amount
        - current_price
        - lower_price
        - upper_price
        - in_range
      title: CLMMPositionInfo
      description: >-
        Information about a CLMM liquidity position.


        Note: in_range here is a bool (live Gateway read); the DB-backed

        /clmm/positions/search endpoint reports in_range as the string enum

        IN_RANGE / OUT_OF_RANGE / UNKNOWN (three states, so not collapsible to
        bool).
    HTTPValidationError:
      properties:
        detail:
          items:
            $ref: '#/components/schemas/ValidationError'
          type: array
          title: Detail
      type: object
      title: HTTPValidationError
    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

````