Request for obtaining the list of supported token pairs
GET /1.0/client/transaction-status.
Accepts the following parameters:
Parametrs
Description
networkFrom (string, required)
departure network symbol
networkTo (string, required)
destination network symbol
cryptoFrom (string, not required)
departure token symbol
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
}
PreviousRequest for obtaining the list of supported networks and tokensNextTransaction Data Signature Logic
Last updated