Swap Pairs2
Authentication
Name
Type
Description
{
"data": {
"list":
{
"from_currency": string, // The currency being swapped from, e.g., 'BTC' (Bitcoin).
"to_currency": string, // The currency being swapped to, e.g., 'USDT' (Tether).
"min_amount": decimal // The minimum amount of the "from_currency" required for the swap, represented with high precision (e.g., 0.01 BTC).
}[],
"meta": {
"page": integer, // The current page number of the result set.
"last_page": integer, // The total number of pages available based on the number of records and page size.
"total": integer // The total number of payments available for the specified criteria.
},
},
"message": string, // A message containing additional information about the result of the request.
"error": {
"type": string,
"key": string,
"message": string
} || {}, // An object that provides details about any errors that occurred.
"status": integer, // The status of the request response. Typically provided as a numeric code (e.g., 200 for success or other codes for errors).
"version": string // The version of the API being used.
}API Request Sample Codes
API Response Example
Last updated