---
title: "Get Clmm Pool Info"
method: GET
path: "/gateway/clmm/pool-info"
tags: ["Gateway CLMM"]
---

# Get Clmm Pool Info

`GET /gateway/clmm/pool-info`

Get detailed information about a CLMM pool by pool address.

Args:
    connector: CLMM connector (e.g., 'meteora', 'raydium')
    network: Network ID in 'chain-network' format (e.g., 'solana-mainnet-beta')
    pool_address: Pool contract address

Example:
    GET /gateway/clmm/pool-info?connector=meteora&network=solana-mainnet-beta&pool_address=2sf5NYcY4zUPXUSmG6f66mskb24t5F8S11pC1Nz5nQT3

Returns:
    Pool information including liquidity, price, bins (for Meteora), etc.
    All field names are returned in snake_case format.

Note:
    For Raydium connector, uses Raydium API directly instead of Gateway.

## Query parameters

- `connector` string, required
- `network` string, required
- `pool_address` string, required

## Response `200`

Successful Response

- CLMMPoolInfoResponse — Response with detailed CLMM pool information
  - `address` string, required — Pool address
  - `baseTokenAddress` string, required — Base token contract address
  - `quoteTokenAddress` string, required — Quote token contract address
  - `binStep` integer, nullable — Bin step (Meteora DLMM only)
  - `feePct` string, required — Pool fee percentage
  - `price` string, required — Current pool price
  - `baseTokenAmount` string, required — Total base token liquidity
  - `quoteTokenAmount` string, required — Total quote token liquidity
  - `activeBinId` integer, nullable — Currently active bin ID (Meteora DLMM only)
  - `dynamicFeePct` string, nullable — Dynamic fee percentage
  - `minBinId` integer, nullable — Minimum bin ID (Meteora-specific)
  - `maxBinId` integer, nullable — Maximum bin ID (Meteora-specific)
  - `bins` CLMMPoolBin[] — List of bins with liquidity
    - `binId` integer, required — Bin identifier
    - `price` string, required — Price at this bin
    - `baseTokenAmount` string, required — Base token amount in bin
    - `quoteTokenAmount` string, required — Quote token amount in bin

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