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

## Changes

- **2026-04-08** `92703f48a69e` — 2 info
  - added the optional property `detail/items/ctx` to the response with the `422` status
  - added the optional property `detail/items/input` to the response with the `422` status
- **2026-01-17** `daa29248aacc` — 4 breaking
  - the response property `activeBinId` became optional for the status `200`
  - the response property `binStep` became optional for the status `200`
  - response property `activeBinId` list-of-types was widened by adding types `null` to media type `application/json` of response `200`
  - response property `binStep` list-of-types was widened by adding types `null` to media type `application/json` of response `200`
- **2025-12-20** `1005bcd47280` — 1 info
  - endpoint added

[Change history](https://skmtc.dev/hummingbot/apis/hummingbot-api/changes/gateway/clmm/pool-info/get.md)

---

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