GET
/
v1
/
custody
/
coin_info
/
request(
  "GET",
  "/v1/custody/coin_info/",
  {
    "coin": "ETH",
    "amount": 1000000000000000000
  },
  api_key, api_secret, host
)
{
  "success": true,
  "result": {
    "coin": "ETH",
    "display_code": "ETH",
    "description": "Ethereum",
    "decimal": 18,
    "can_deposit": true,
    "can_withdraw": true,
    "require_memo": false,
    "balance": "0",
    "abs_balance": "0",
    "fee_coin": "ETH",
    "abs_estimate_fee": "0.0003648",
    "abs_estimate_fee_usd": "5.67",
    "confirming_threshold": 12,
    "dust_threshold": 0,
    "token_address": ""
  }
}

Request

coin
String
required
Coin code
amount
Int
the amount you wish to send
To accurately estimate handling fees, it is required to include the amount parameter. Otherwise, this endpoint will return the default transaction fee. Please note that the default transaction fee might not be very accurate.

Response

success
bool
request successful or failed
result
object