Get Min-Max API
Retrieves the minimum and maximum exchangeable amounts for a specific token pair.
Endpoint: GET/getMinMax
GET/getMinMax
Response: A JSON object containing minMax
details.
The first element is the minimum exchangeable amount.Comment
The second element is the maximum exchangeable amount.
Parameters:
Field
Type
Description
from
string
Symbol of the source token (example: ETH)
to
string
Symbol of the destination token (example: BNB)
anonymous
boolean
Indicates if the transaction should be anonymous (example: false)
cexOnly (optional)
boolean
Whether to limit results to centralized exchanges (example: false)
Example request:
GET /getMinMax?from=ETH&to=BNB&anonymous=false&cexOnly=false
Example Response:
[
0.0253712625,
16.914175
]
Last updated