v1

latestOpenAPI 3.0.0ISC2026-07-26318688.6 KB
MinMax

Get DEX and CEX min/max amounts

Get combined CEX and DEX min/max swap amounts for a token pair and return exchange limits.

Supports both ObjectId and CEX token ID formats for tokenIdFrom/tokenIdTo:

  • ObjectId format: "6689b73ec90e45f3b3e51566" (for DEX operations)
  • CEX token ID format: "ETH", "BNB", "USDT" (for CEX operations)
get/minMax

Query parameters

tokenIdFromstring required

Source token identifier (ObjectId or CEX token ID like "ETH")

tokenIdTostring required

Destination token identifier (ObjectId or CEX token ID like "BNB")

Response

Success

Example response

{
  "cex": {
    "maxOut": 50000,
    "minOut": 75,
    "max": 16.914175,
    "min": 0.0253712625
  },
  "dex": {
    "max": 50,
    "min": 0.005
  },
  "private": {
    "maxOut": 50000,
    "minOut": 100,
    "max": 16.914175,
    "min": 0.0845708751
  }
}