curl --request GET \
--url http://localhost:8000/gateway/clmm/pool-info \
--header 'Authorization: Basic <encoded-value>'import requests
url = "http://localhost:8000/gateway/clmm/pool-info"
headers = {"Authorization": "Basic <encoded-value>"}
response = requests.get(url, headers=headers)
print(response.text)const options = {method: 'GET', headers: {Authorization: 'Basic <encoded-value>'}};
fetch('http://localhost:8000/gateway/clmm/pool-info', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));<?php
$curl = curl_init();
curl_setopt_array($curl, [
CURLOPT_PORT => "8000",
CURLOPT_URL => "http://localhost:8000/gateway/clmm/pool-info",
CURLOPT_RETURNTRANSFER => true,
CURLOPT_ENCODING => "",
CURLOPT_MAXREDIRS => 10,
CURLOPT_TIMEOUT => 30,
CURLOPT_HTTP_VERSION => CURL_HTTP_VERSION_1_1,
CURLOPT_CUSTOMREQUEST => "GET",
CURLOPT_HTTPHEADER => [
"Authorization: Basic <encoded-value>"
],
]);
$response = curl_exec($curl);
$err = curl_error($curl);
curl_close($curl);
if ($err) {
echo "cURL Error #:" . $err;
} else {
echo $response;
}package main
import (
"fmt"
"net/http"
"io"
)
func main() {
url := "http://localhost:8000/gateway/clmm/pool-info"
req, _ := http.NewRequest("GET", url, nil)
req.Header.Add("Authorization", "Basic <encoded-value>")
res, _ := http.DefaultClient.Do(req)
defer res.Body.Close()
body, _ := io.ReadAll(res.Body)
fmt.Println(string(body))
}HttpResponse<String> response = Unirest.get("http://localhost:8000/gateway/clmm/pool-info")
.header("Authorization", "Basic <encoded-value>")
.asString();require 'uri'
require 'net/http'
url = URI("http://localhost:8000/gateway/clmm/pool-info")
http = Net::HTTP.new(url.host, url.port)
request = Net::HTTP::Get.new(url)
request["Authorization"] = 'Basic <encoded-value>'
response = http.request(request)
puts response.read_body{
"active_bin_id": -374,
"address": "5hbf9JP8k5zdrZp9pokPypFQoBse5mGCmW6nqodurGcd",
"base_token_address": "METvsvVRapdj9cFLzq4Tr43xK4tAjQfwX76z3n6mWQL",
"base_token_amount": 8645709.142366,
"bin_step": 20,
"bins": [],
"fee_pct": 0.2,
"price": 0.47366592950616504,
"quote_token_address": "EPjFWdd5AufqSSqeM2qN1xzybapC8G4wEGGkZwyTDt1v",
"quote_token_amount": 1095942.335132
}{
"detail": [
{
"loc": [
"<string>"
],
"msg": "<string>",
"type": "<string>",
"input": "<unknown>",
"ctx": {}
}
]
}Get 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
bin_count: If > 0, include the per-tick liquidity distribution (bins)
around the active tick. Meteora always returns its bins and ignores
this; orca, raydium, uniswap and pancakeswap honour it.
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.
curl --request GET \
--url http://localhost:8000/gateway/clmm/pool-info \
--header 'Authorization: Basic <encoded-value>'import requests
url = "http://localhost:8000/gateway/clmm/pool-info"
headers = {"Authorization": "Basic <encoded-value>"}
response = requests.get(url, headers=headers)
print(response.text)const options = {method: 'GET', headers: {Authorization: 'Basic <encoded-value>'}};
fetch('http://localhost:8000/gateway/clmm/pool-info', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));<?php
$curl = curl_init();
curl_setopt_array($curl, [
CURLOPT_PORT => "8000",
CURLOPT_URL => "http://localhost:8000/gateway/clmm/pool-info",
CURLOPT_RETURNTRANSFER => true,
CURLOPT_ENCODING => "",
CURLOPT_MAXREDIRS => 10,
CURLOPT_TIMEOUT => 30,
CURLOPT_HTTP_VERSION => CURL_HTTP_VERSION_1_1,
CURLOPT_CUSTOMREQUEST => "GET",
CURLOPT_HTTPHEADER => [
"Authorization: Basic <encoded-value>"
],
]);
$response = curl_exec($curl);
$err = curl_error($curl);
curl_close($curl);
if ($err) {
echo "cURL Error #:" . $err;
} else {
echo $response;
}package main
import (
"fmt"
"net/http"
"io"
)
func main() {
url := "http://localhost:8000/gateway/clmm/pool-info"
req, _ := http.NewRequest("GET", url, nil)
req.Header.Add("Authorization", "Basic <encoded-value>")
res, _ := http.DefaultClient.Do(req)
defer res.Body.Close()
body, _ := io.ReadAll(res.Body)
fmt.Println(string(body))
}HttpResponse<String> response = Unirest.get("http://localhost:8000/gateway/clmm/pool-info")
.header("Authorization", "Basic <encoded-value>")
.asString();require 'uri'
require 'net/http'
url = URI("http://localhost:8000/gateway/clmm/pool-info")
http = Net::HTTP.new(url.host, url.port)
request = Net::HTTP::Get.new(url)
request["Authorization"] = 'Basic <encoded-value>'
response = http.request(request)
puts response.read_body{
"active_bin_id": -374,
"address": "5hbf9JP8k5zdrZp9pokPypFQoBse5mGCmW6nqodurGcd",
"base_token_address": "METvsvVRapdj9cFLzq4Tr43xK4tAjQfwX76z3n6mWQL",
"base_token_amount": 8645709.142366,
"bin_step": 20,
"bins": [],
"fee_pct": 0.2,
"price": 0.47366592950616504,
"quote_token_address": "EPjFWdd5AufqSSqeM2qN1xzybapC8G4wEGGkZwyTDt1v",
"quote_token_amount": 1095942.335132
}{
"detail": [
{
"loc": [
"<string>"
],
"msg": "<string>",
"type": "<string>",
"input": "<unknown>",
"ctx": {}
}
]
}Authorizations
Basic authentication header of the form Basic <encoded-value>, where <encoded-value> is the base64-encoded string username:password.
Query Parameters
Response
Successful Response
Response with detailed CLMM pool information
Pool address
Base token contract address
Quote token contract address
Pool fee percentage
^(?!^[-+.]*$)[+-]?0*\d*\.?\d*$Current pool price
^(?!^[-+.]*$)[+-]?0*\d*\.?\d*$Total base token liquidity
^(?!^[-+.]*$)[+-]?0*\d*\.?\d*$Total quote token liquidity
^(?!^[-+.]*$)[+-]?0*\d*\.?\d*$Bin step (Meteora DLMM only)
Currently active bin/tick ID
List of bins with liquidity
Show child attributes
Show child attributes
Was this page helpful?

