---
title: "Close Clmm Position"
method: POST
path: "/gateway/clmm/close"
tags: ["Gateway CLMM"]
---

# Close Clmm Position

`POST /gateway/clmm/close`

CLOSE a CLMM position completely (removes all liquidity and collects pending fees).

Example:
    connector: 'meteora'
    network: 'solana-mainnet-beta'
    position_address: '...'
    wallet_address: (optional)

Returns:
    Transaction hash and collected fee amounts

## Request body

- CLMMClosePositionRequest — Request to CLOSE a CLMM position completely (removes all liquidity and closes position)
  - `connector` string, required — CLMM connector (e.g., 'meteora', 'raydium', 'uniswap')
  - `network` string, required — Network ID in 'chain-network' format (e.g., 'solana-mainnet-beta')
  - `position_address` string, required — Position address to close
  - `wallet_address` string, nullable — Wallet address (optional, uses default if not provided)

## Response `200`

Successful Response

- CLMMCollectFeesResponse — Response after collecting fees
  - `transaction_hash` string, required — Transaction hash
  - `position_address` string, required — Position address
  - `base_fee_collected` string, nullable — Base token fees collected
  - `quote_fee_collected` string, nullable — Quote token fees collected
  - `status` string — Transaction status

## 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)
