---
title: "Get Clmm Positions Owned"
method: POST
path: "/gateway/clmm/positions_owned"
tags: ["Gateway CLMM"]
---

# Get Clmm Positions Owned

`POST /gateway/clmm/positions_owned`

Get all CLMM liquidity positions owned by a wallet for a specific pool.

Example:
    connector: 'meteora'
    network: 'solana-mainnet-beta'
    pool_address: '2sf5NYcY4zUPXUSmG6f66mskb24t5F8S11pC1Nz5nQT3'
    wallet_address: (optional, uses default if not provided)

Returns:
    List of CLMM position information for the specified pool

## Request body

- CLMMPositionsOwnedRequest — Request to get all CLMM positions owned by a wallet for a specific pool
  - `connector` string, required — CLMM connector (e.g., 'meteora', 'raydium', 'uniswap')
  - `network` string, required — Network ID in 'chain-network' format (e.g., 'solana-mainnet-beta')
  - `pool_address` string, required — Pool contract address to filter positions
  - `wallet_address` string, nullable — Wallet address (optional, uses default if not provided)

## Response `200`

Successful Response

- CLMMPositionInfo[]
  - `position_address` string, required — Position address
  - `pool_address` string, required — Pool address
  - `trading_pair` string, required — Trading pair
  - `base_token` string, required — Base token symbol
  - `quote_token` string, required — Quote token symbol
  - `base_token_amount` string, required — Base token amount in position
  - `quote_token_amount` string, required — Quote token amount in position
  - `current_price` string, required — Current pool price
  - `lower_price` string, required — Lower price bound
  - `upper_price` string, required — Upper price bound
  - `base_fee_amount` string, nullable — Base token uncollected fees
  - `quote_fee_amount` string, nullable — Quote token uncollected fees
  - `lower_bin_id` integer, nullable — Lower bin ID (Meteora)
  - `upper_bin_id` integer, nullable — Upper bin ID (Meteora)
  - `in_range` boolean, required — Whether position is currently in range

## Other responses

- `422` — Validation Error

---

[API](https://skmtc.net/hummingbot/apis/hummingbot-api.md) · [All operations](https://skmtc.net/hummingbot/apis/hummingbot-api/llms.txt) · [OpenAPI document](https://skmtc-service-staging.skmtc.workers.dev/v1/apis/hummingbot/hummingbot-api/revisions/5347fe79537f/schema)
