Get AMM Liquidity Pool
HTTP request
GET /assets/amm/liquidity-pool
Request parameters
Parameter Name | Required | Type | Notes |
---|---|---|---|
market | true | string | Market name list, separating multiple market names with "," and the maximum limit is 10 markets. |
Return parameters
Parameter Name | Type | Notes |
---|---|---|
market | string | Market name |
type | string | AMM market type |
base_ccy | string | Base currency |
quote_ccy | string | Quote currency |
base_ccy_amount | string | Base currency amount |
quote_ccy_amount | string | Base currency amount |
total_liquidity | string | Total liquidity |
apy_1day | string | 1-day APY |
apy_7day | string | 7-day APY |
value_7day | string | 7-day trading value |
fee_dividend_7day | string | 7-day fee dividend |
Request example
GET /assets/amm/liquidity-pool?market=CETUSDT
Response example
{
"code": 0,
"data": [
{
"market": "CETUSDT",
"type": "infinite",
"base_ccy": "CET",
"quote_ccy": "USDT",
"base_ccy_amount": "9867308.89746572",
"quote_ccy_amount": "640781.63710471",
"total_liquidity": "1276150.44",
"apy_1day": "0.3289",
"apy_7day": "0.1837",
"value_7day": "1712566.25",
"fee_dividend_7day": "5750.5",
}
],
"message": "OK"
}