---
title: "Add Liquidity To Clmm Position"
method: POST
path: "/gateway/clmm/add"
tags: ["Gateway CLMM"]
---

# Add Liquidity To Clmm Position

`POST /gateway/clmm/add`

Add MORE liquidity to an EXISTING CLMM position.

Example:
    connector: 'meteora'
    network: 'solana-mainnet-beta'
    position_address: '...'
    base_token_amount: 0.5
    quote_token_amount: 50.0
    slippage_pct: 1
    wallet_address: (optional)

Returns:
    Transaction hash

## Request body

- CLMMAddLiquidityRequest — Request to add MORE liquidity to an EXISTING CLMM 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 — Existing position address to add liquidity to
  - `base_token_amount` union — Amount of base token to add
    - number
    - string
  - `quote_token_amount` union — Amount of quote token to add
    - number
    - string
  - `slippage_pct` union — Maximum slippage percentage (default: 1.0)
    - number
    - string
  - `wallet_address` string, nullable — Wallet address (optional, uses default if not provided)

## Response `200`

Successful Response

- unknown

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