• 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
        • Response JSON Example
        • Response Parameters

          # GET /v1/deposit/currencies

          Returns a list of currencies that are available to deposit as well as terms of deposit for each currency on every platform.

          GET /v1/deposit/currencies?limit={limit}&offset={offset}
          

          # Request Parameters

          Field name Description
          limit Number of returned objects (page size).
          offset Number of objects that should be skipped when getting.

          # Response JSON Example

          {
              "type": "list",
              "page_info": {
                  "has_next_page": false
              },
              "items": [
                  {
                      "type": "deposit_currency",
                      "id": "BTC",
                      "platform_id": "BTC",
                      "waves_asset_id": "8LQW8f7P5d5PZM7GtZEBgaqRPGSzS3DfPuiXrURJ4AJS",
                      "platform_asset_id": "BTC",
                      "decimals": 8,
                      "status": "active",
                      "allowed_amount": {
                          "min": 0.001,
                          "max": 1000.0
                      },
                      "fees": {
                          "flat": 0.0,
                          "rate": 0.0
                      }
                  },
                  {
                      "type": "deposit_currency",
                      "id": "ETH",
                      "platform_id": "ETH",
                      "waves_asset_id": "474jTeYx2r2Va35794tCScAXWJG9hU2HcgxzMowaZUnu",
                      "platform_asset_id": "ETH",
                      "decimals": 18,
                      "status": "active",
                      "allowed_amount": {
                          "min": 0.01,
                          "max": 50000.0
                      },
                      "fees": {
                          "flat": 0.0,
                          "rate": 0.0
                      }
                  },
                  {
                      "type": "deposit_currency",
                      "id": "USDN",
                      "platform_id": "ETH",
                      "waves_asset_id": "DG2xFkPdDwKUoBkzGAhQtLpSGzfXLiCYPEzeKH2Ad24p",
                      "platform_asset_id": "0xdc829bf0d79e690c59cee708b527e6b74a1629f5",
                      "decimals": 18,
                      "status": "active",
                      "allowed_amount": {
                      "min": 1.0,
                      "max": 30000000.0
                    },
                    "fees": {
                      "flat": 0.0,
                      "rate": 0.0
                    }
                  },
                  {
                    "type": "deposit_currency",
                    "id": "USDN",
                    "platform_id": "BSC",
                    "waves_asset_id": "DG2xFkPdDwKUoBkzGAhQtLpSGzfXLiCYPEzeKH2Ad24p",
                    "platform_asset_id": "0xe07910a06a086c83ba41827aa00b26ed5e20065b",
                    "decimals": 18,
                    "status": "active",
                    "allowed_amount": {
                      "min": 1.0,
                      "max": 30000000.0
                    },
                    "fees": {
                      "flat": 0.0,
                      "rate": 0.0
                    }
                  },
                ]
          }
          

          # Response Parameters

          Field name Description
          page_info.has_next_page true if next page exists
          items List of currencies.
          Fields of each item are described in Terms of Deposit article
          GET /v1/deposit/addresses/{currency}/{platform}
          [Deprecated] GET /v1/deposit/currencies/{currency}
          GET /v1/deposit/addresses/{currency}/{platform}
          [Deprecated] GET /v1/deposit/currencies/{currency}