---
title: "Add Pool"
method: POST
path: "/gateway/pools"
tags: ["Gateway"]
---

# Add Pool

`POST /gateway/pools`

Add a custom liquidity pool.

Args:
    pool_request: Pool details (connector, type, network, base, quote, address)

## Request body

- AddPoolRequest — Request to add a liquidity pool
  - `connector_name` string, required — DEX connector name (e.g., 'raydium', 'meteora')
  - `type` string, required — Pool type ('clmm' or 'amm')
  - `network` string, required — Network name (e.g., 'mainnet-beta')
  - `address` string, required — Pool contract address
  - `base` string, required — Base token symbol
  - `quote` string, required — Quote token symbol
  - `base_address` string, required — Base token contract address
  - `quote_address` string, required — Quote token contract address
  - `fee_pct` number, nullable — Pool fee percentage (e.g., 0.25)

## Response `200`

Successful Response

- object

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