API WEB 2.0
  • Overview
  • Step-by-step guide
    • Basics
    • Request to create a transaction
    • Transfer initialization request without private key
    • Transfer initialization request with private key
    • Transaction status request
    • Request for obtaining the list of supported networks and tokens
    • Request for obtaining the list of supported token pairs
    • Transaction Data Signature Logic
    • Private key encryption logic
Powered by GitBook
On this page
  1. Step-by-step guide

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 2 years ago