Request for obtaining the list of supported token pairs

GET /1.0/client/transaction-status. Accepts the following parameters:

This request returns a list of token pairs.

An example of a successful response without the cryptoFrom parameter (HTTP code 200):

{
   "cryptos": { // list network token pairs
       "ETH": [ // departure token symbol
           "BSC" // destination token symbol
       ],
    }
}

An example of a successful response with thecryptoFrom parameter (HTTP code 200):

[ // a list of destination token symbols
   "USDT",
   "USDC",
   "WETH",
]

Example of server error (HTTP code 500):

{
   "success": false, // request success flag
   "message": "Internal Server Error" // error message
}

Last updated