Get pools with filtering
curl --request GET \
--url https://gateway.ramses.xyz/v3/hyperevm/poolsimport requests
url = "https://gateway.ramses.xyz/v3/hyperevm/pools"
response = requests.get(url)
print(response.text)const options = {method: 'GET'};
fetch('https://gateway.ramses.xyz/v3/hyperevm/pools', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));<?php
$curl = curl_init();
curl_setopt_array($curl, [
CURLOPT_URL => "https://gateway.ramses.xyz/v3/hyperevm/pools",
CURLOPT_RETURNTRANSFER => true,
CURLOPT_ENCODING => "",
CURLOPT_MAXREDIRS => 10,
CURLOPT_TIMEOUT => 30,
CURLOPT_HTTP_VERSION => CURL_HTTP_VERSION_1_1,
CURLOPT_CUSTOMREQUEST => "GET",
]);
$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 := "https://gateway.ramses.xyz/v3/hyperevm/pools"
req, _ := http.NewRequest("GET", url, nil)
res, _ := http.DefaultClient.Do(req)
defer res.Body.Close()
body, _ := io.ReadAll(res.Body)
fmt.Println(string(body))
}HttpResponse<String> response = Unirest.get("https://gateway.ramses.xyz/v3/hyperevm/pools")
.asString();require 'uri'
require 'net/http'
url = URI("https://gateway.ramses.xyz/v3/hyperevm/pools")
http = Net::HTTP.new(url.host, url.port)
http.use_ssl = true
request = Net::HTTP::Get.new(url)
response = http.request(request)
puts response.read_body{
"totalPools": 123,
"pools": [
{
"id": "<string>",
"symbol": "<string>",
"type": "<string>",
"token0": {
"id": "<string>",
"address": "<string>",
"symbol": "<string>",
"decimals": 123,
"priceUsd": 123,
"name": "<string>"
},
"token1": {
"id": "<string>",
"address": "<string>",
"symbol": "<string>",
"decimals": 123,
"priceUsd": 123,
"name": "<string>"
},
"feeTier": 123,
"feeProtocol": 123,
"tokensStaked": "<string>",
"gaugeAddress": "<string>",
"gaugeRewardTokens": [
"<string>"
],
"feeDistributorAddress": "<string>",
"feeDistributorRewardTokens": [
"<string>"
],
"reserve0": 123,
"reserve1": 123,
"reserve0Usd": 123,
"reserve1Usd": 123,
"tvlUsd": 123,
"lpRewardsUsd": 123,
"voterRewardsUsd": 123,
"lpRewards": [
{
"token": {
"id": "<string>",
"address": "<string>",
"symbol": "<string>",
"decimals": 123,
"priceUsd": 123,
"name": "<string>"
},
"rate": "<string>",
"usdValue": 123,
"periodFinish": 123
}
],
"voterRewards": [
{
"token": {
"id": "<string>",
"address": "<string>",
"symbol": "<string>",
"decimals": 123,
"priceUsd": 123,
"name": "<string>"
},
"amount": "<string>",
"usdValue": 123
}
],
"isCl": true,
"isStable": true,
"hasDynamicFees": true,
"hasCorrelatedTokens": true,
"hasGauge": true,
"hasActiveGauge": true,
"totalVeShareByPeriod": "<string>",
"totalSupply": "<string>",
"lpPrice": 123,
"lpApr": 123,
"feeApr": 123,
"rewardApr": 123,
"voteApr": 123,
"liquidity": "<string>",
"sqrtPrice": "<string>",
"tick": 123,
"tickSpacing": 123,
"oneTickFeeApr": 123,
"oneTickEmissionApr": 123,
"pctActiveTvl": 123,
"recommendedRanges": [
{
"name": "<string>",
"value": 123,
"unit": "<string>",
"delta": 123,
"liquidityUsd": 123,
"rewardApr": 123,
"feeApr": 123,
"lpApr": 123,
"default": true
}
],
"last24hVolume": 123,
"last24hFees": 123,
"last7dVolume": 123,
"last7dFees": 123
}
]
}Pools
Get pools with filtering
Returns liquidity pools with pagination, filtering, and sorting options.
GET
/
pools
Get pools with filtering
curl --request GET \
--url https://gateway.ramses.xyz/v3/hyperevm/poolsimport requests
url = "https://gateway.ramses.xyz/v3/hyperevm/pools"
response = requests.get(url)
print(response.text)const options = {method: 'GET'};
fetch('https://gateway.ramses.xyz/v3/hyperevm/pools', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));<?php
$curl = curl_init();
curl_setopt_array($curl, [
CURLOPT_URL => "https://gateway.ramses.xyz/v3/hyperevm/pools",
CURLOPT_RETURNTRANSFER => true,
CURLOPT_ENCODING => "",
CURLOPT_MAXREDIRS => 10,
CURLOPT_TIMEOUT => 30,
CURLOPT_HTTP_VERSION => CURL_HTTP_VERSION_1_1,
CURLOPT_CUSTOMREQUEST => "GET",
]);
$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 := "https://gateway.ramses.xyz/v3/hyperevm/pools"
req, _ := http.NewRequest("GET", url, nil)
res, _ := http.DefaultClient.Do(req)
defer res.Body.Close()
body, _ := io.ReadAll(res.Body)
fmt.Println(string(body))
}HttpResponse<String> response = Unirest.get("https://gateway.ramses.xyz/v3/hyperevm/pools")
.asString();require 'uri'
require 'net/http'
url = URI("https://gateway.ramses.xyz/v3/hyperevm/pools")
http = Net::HTTP.new(url.host, url.port)
http.use_ssl = true
request = Net::HTTP::Get.new(url)
response = http.request(request)
puts response.read_body{
"totalPools": 123,
"pools": [
{
"id": "<string>",
"symbol": "<string>",
"type": "<string>",
"token0": {
"id": "<string>",
"address": "<string>",
"symbol": "<string>",
"decimals": 123,
"priceUsd": 123,
"name": "<string>"
},
"token1": {
"id": "<string>",
"address": "<string>",
"symbol": "<string>",
"decimals": 123,
"priceUsd": 123,
"name": "<string>"
},
"feeTier": 123,
"feeProtocol": 123,
"tokensStaked": "<string>",
"gaugeAddress": "<string>",
"gaugeRewardTokens": [
"<string>"
],
"feeDistributorAddress": "<string>",
"feeDistributorRewardTokens": [
"<string>"
],
"reserve0": 123,
"reserve1": 123,
"reserve0Usd": 123,
"reserve1Usd": 123,
"tvlUsd": 123,
"lpRewardsUsd": 123,
"voterRewardsUsd": 123,
"lpRewards": [
{
"token": {
"id": "<string>",
"address": "<string>",
"symbol": "<string>",
"decimals": 123,
"priceUsd": 123,
"name": "<string>"
},
"rate": "<string>",
"usdValue": 123,
"periodFinish": 123
}
],
"voterRewards": [
{
"token": {
"id": "<string>",
"address": "<string>",
"symbol": "<string>",
"decimals": 123,
"priceUsd": 123,
"name": "<string>"
},
"amount": "<string>",
"usdValue": 123
}
],
"isCl": true,
"isStable": true,
"hasDynamicFees": true,
"hasCorrelatedTokens": true,
"hasGauge": true,
"hasActiveGauge": true,
"totalVeShareByPeriod": "<string>",
"totalSupply": "<string>",
"lpPrice": 123,
"lpApr": 123,
"feeApr": 123,
"rewardApr": 123,
"voteApr": 123,
"liquidity": "<string>",
"sqrtPrice": "<string>",
"tick": 123,
"tickSpacing": 123,
"oneTickFeeApr": 123,
"oneTickEmissionApr": 123,
"pctActiveTvl": 123,
"recommendedRanges": [
{
"name": "<string>",
"value": 123,
"unit": "<string>",
"delta": 123,
"liquidityUsd": 123,
"rewardApr": 123,
"feeApr": 123,
"lpApr": 123,
"default": true
}
],
"last24hVolume": 123,
"last24hFees": 123,
"last7dVolume": 123,
"last7dFees": 123
}
]
}Query Parameters
Maximum number of pools to return (default: 100)
Number of pools to skip (default: 0)
Filter by concentrated liquidity pools
Filter by pools with active gauges
Field to sort by
Available options:
tvlUsd, lpApr, voteApr, lpRewardsUsd, voterRewardsUsd Sort direction
Available options:
desc, asc ⌘I
