Instant exchange API

Available Currencies List

GET:

This API endpoint provides a paginated list of all available currencies.
Parameters:
NameTypeRequired or optionalDescription
pagenumberoptionalCurrent page
limitnumberoptionalLimit per page
searchstringoptionalSearch by currency name
methodnumberoptionalMethod 1 we get an array with coins for deposit. Method 2 we get an array with coins for output
depositCoin stringoptionalDeposit coin
receiveCoinstringoptionalReceive coin
depositNetworkstringoptionalDeposit network
receiveNetworkstringoptionalReceive network
Successful response fields:
NameTypeDescription
pagination:objectPagination
    pageCountnumberPage count
    totalCountnumberTotal items
depositCoins / withdrawCoinsarrayList with coins
    imagestringСoin image
    subNamestringСoin sub name
    namestringCoin name
    networksobjectCoin networks
        deposits / withdrawsarrayDeposits or withdraws networks
            subNamestringNetwork name
            memoNeededbooleanNetwork has extra ID
Example request:

GET:

Example response:
{
  "pagination": {
    "pageCount": 52,
    "totalCount": 260
  },
  "depositCoins": [
    {
      "image": "example/USDT.png",
      "subName": "USDT",
      "name": "TetherUS",
      "networks": {
        "deposits": [
          {
            "subName": "TRX",
            "memoNeeded": true
          }
        ]
      }
    }
  ]
}