• APIs and Libraries
    APIs and Libraries
  • Connect WX Network wallet
    Connect WX Network wallet
  • CCXT
    CCXT
  • Fees
    Fees
  • Matcher
    • WX Network Protocol
      WX Network Protocol
    • Matcher Fee
      Matcher Fee
    • Install Matcher on Ubuntu From Deb-package
      Install Matcher on Ubuntu From Deb-package
    • Matcher Settings
      Matcher Settings
    • Matcher API
      • Order Validation
        Order Validation
      • Exchange Transation Validation
        Exchange Transation Validation
      Matcher API
    • Matcher WebSocket API
      • Errors and Debugging
        Errors and Debugging
      • Common Streams
        Common Streams
      Matcher WebSocket API
    Matcher
  • Gateway API
    • Access Token
      • Get Access Token in WX Network App
        Get Access Token in WX Network App
      • POST /v1/oauth2/token
        POST /v1/oauth2/token
      Access Token
    • Deposit
      • [Deprecated] GET /v1/deposit/addresses/{currency}
        [Deprecated] GET /v1/deposit/addresses/{currency}
      • GET /v1/deposit/addresses/{currency}/{platform}
        GET /v1/deposit/addresses/{currency}/{platform}
      • GET /v1/deposit/currencies
        GET /v1/deposit/currencies
      • [Deprecated] GET /v1/deposit/currencies/{currency}
        [Deprecated] GET /v1/deposit/currencies/{currency}
      • GET /v1/deposit/currencies/{currency}/{platform}
        GET /v1/deposit/currencies/{currency}/{platform}
      • Terms of Deposit
        Terms of Deposit
      Deposit
    • Withdraw
      • [Deprecated] GET /v1/withdraw/addresses/{currency}/{address}
        [Deprecated] GET /v1/withdraw/addresses/{currency}/{address}
      • GET /v1/withdraw/addresses/{currency}/{address}/{platform}
        GET /v1/withdraw/addresses/{currency}/{address}/{platform}
      • GET /v1/withdraw/currencies
        GET /v1/withdraw/currencies
      • [Deprecated] GET /v1/withdraw/currencies/{currency}
        [Deprecated] GET /v1/withdraw/currencies/{currency}
      • GET /v1/withdraw/currencies/{currency}/{platform}
        GET /v1/withdraw/currencies/{currency}/{platform}
      • Terms of Withdrawal
        Terms of Withdrawal
      Withdraw
    • Movements History
      Movements History
    • Platforms List
      Platforms List
    • Error Codes
      Error Codes
    Gateway API
  • Get Trades
    Get Trades
  • Staking Annual Percentage Yield API
    Staking Annual Percentage Yield API
  • Payment API
    Payment API
  • Web Auth API
    Web Auth API
  • WX Token Protocol
    WX Token Protocol
  • Glossary
    Glossary
      • English
      • Русский
      On this page
        • Request Parameters
        • Curl Example
        • Response JSON Example
        • Response parameters

          # GET /v1/withdraw/addresses/{currency}/{address}/{platform}

          Returns Waves address for withdrawal that corresponds to specified address on external blockchain, as well as terms of withdrawal for a given currency and platform.

          This method requires access token. For more information about the token see the Access Token article.

          GET /v1/withdraw/addresses/{currency}/{address}/{platform}
          Authorization: Bearer {access_token}
          

          # Request Parameters

          Field name Description
          currency Ticker of the currency on WX Network. To get tickers for all currencies use the GET /v1/withdraw/currencies method
          address Address on external blockchain for withdrawal
          platform Platform id. To get the list of the platforms use the GET /v1/platforms method
          access_token Token that represents user's permission to access data

          # Curl Example

          curl -X GET "https://api.waves.exchange/v1/withdraw/addresses/USDN/0x71C7656EC7ab88b098defB751B7401B5f6d8976F/BSC" -H "Accept: application/json" -H "Authorization: Bearer 0f0f0f0f0f0f0f0f0f0f0f0f0f0f0f0f"
          

          # Response JSON Example

          {
              "type": "withdrawal_addresses",
              "currency": {
                  "type": "withdrawal_currency",
                    "id": "USDN",
                    "platform_id": "BSC",
                    "waves_asset_id": "DG2xFkPdDwKUoBkzGAhQtLpSGzfXLiCYPEzeKH2Ad24p",
                    "platform_asset_id": "0xe07910a06a086c83ba41827aa00b26ed5e20065b",
                    "decimals": 6,
                    "status": "active",
                    "allowed_amount": {
                      "min": 1.0,
                      "max": 1000000.0
                    },
                    "fees": {
                      "flat": 15.0,
                      "rate": 0.0
                  }
              },
              "proxy_addresses": [
                  "3PQ4nHEVPtvd4TDP77H7BSdDddyxLs9gQ67"
              ]
          }
          

          # Response parameters

          Field name Description
          currency Terms of withdrawal for the currency.
          Fields are described in Terms of Withdrawal article
          proxy_addresses Waves address to transfer cryptocurrency and then receive the transfer to user's address on external blockchain
          [Deprecated] GET /v1/withdraw/addresses/{currency}/{address}
          GET /v1/withdraw/currencies
          [Deprecated] GET /v1/withdraw/addresses/{currency}/{address}
          GET /v1/withdraw/currencies