GET
/
pools
/
token
cURL
curl --request GET \
  --url https://api.cleopetra.fun/pools/token \
  --header 'Authorization: Bearer <token>'
[
  {
    "type": "Dlmm",
    "address": "<string>",
    "token_x_info": {
      "mint": "<string>",
      "symbol": "<string>",
      "decimals": 123,
      "image": "<string>"
    },
    "token_y_info": {
      "mint": "<string>",
      "symbol": "<string>",
      "decimals": 123,
      "image": "<string>"
    },
    "reserve_x_amount": 123,
    "reserve_y_amount": 123,
    "tvl": 123,
    "fees_24h": 123,
    "volume_24h": 123,
    "fee_tvl_ratio": 123,
    "apr": 123,
    "price": 123,
    "bin_step": 123,
    "base_fee_percentage": 123,
    "sqrt_price": 123,
    "sqrt_min_price": "<string>",
    "sqrt_max_price": "<string>",
    "fee_scheduler_mode": "Linear"
  }
]

Authorizations

Authorization
string
header
required

Bearer authentication header of the form Bearer <token>, where <token> is your auth token.

Query Parameters

token
string
required
programs
enum<string>[]
required
order_by
enum<string>
default:desc
required
Available options:
desc,
asc
sort_by
enum<string>
default:volume
required
Available options:
tvl,
volume,
feetvlratio

Response

200 - application/json

Successful response with pool information

The response is of type object[].