Skip to main content

CryptoNetworksResponse

successbooleanrequired

Request validation is successful or not. It will be set to true when the HTTP status is 200.

codeintegerrequired

Request status code. It will be set to 1 when the request is processed successfully. When unsuccessful, there will be an error code.

msgstringrequired

Request status message. It will be set to Success when the request is processed successfully. When unsuccessful, there will be an error message.

timenumberrequired

Current unix timestamp.

data object[]required
  • Array [
  • networkstringrequired

    Network

    namestringrequired

    Network name

    depositEnablebooleanrequired

    Allow to deposit

    withdrawEnablebooleanrequired

    Allow to withdraw

    confirmationTimeinteger

    Expected block confirmation time

    depositAmtMinstringrequired

    Minimum amount of deposit

    depositFeeMinstringrequired

    Minimum fees of deposit

    depositFeeRatestringrequired

    Fee rate of deposit

    depositExtFeesstringrequired

    Extra fees of deposit

    depositExtFeeRatestringrequired

    Extra fee rate of deposit

    needAddressExtensionbooleanrequired

    Supported address extension

    addressExtensionTypeNamestring

    Address extension type (e.g. tag)

    withdrawAmtMinstringrequired

    Minimum amount of withdrawal

    withdrawFeeMinstringrequired

    Minimum fees of withdraw

    withdrawFeeRatestringrequired

    Fee rate of withdrawal

    withdrawExtFeesstringrequired

    Extra fees of withdraw

    withdrawExtFeeRatestringrequired

    Extra fee rate of withdraw

  • ]
  • CryptoNetworksResponse
    {
    "data": [
    {
    "network": "string",
    "name": "string",
    "depositEnable": true,
    "withdrawEnable": true,
    "confirmationTime": 0,
    "depositAmtMin": "string",
    "depositFeeMin": "string",
    "depositFeeRate": "string",
    "depositExtFees": "string",
    "depositExtFeeRate": "string",
    "needAddressExtension": true,
    "addressExtensionTypeName": "string",
    "withdrawAmtMin": "string",
    "withdrawFeeMin": "string",
    "withdrawFeeRate": "string",
    "withdrawExtFees": "string",
    "withdrawExtFeeRate": "string"
    }
    ],
    "success": true,
    "code": 0,
    "msg": "string",
    "time": 0
    }