Account
Get Coin Details
This endpoint returns a JSON response with the currency rate and unit for a given coin code. The endpoint requires authentication and takes a 'coin_code' parameter in the GET request.
GET
/v1/custody/coin_info
API-SECRET*
Request
coinrequired
String
Coin code
Response
success
bool
request successful or failed
result
object
request(
"GET",
"/v1/custody/coin_info/",
{
"coin": "ETH"
},
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",
"confirming_threshold": 12,
"dust_threshold": 0,
"token_address": ""
}
}
request(
"GET",
"/v1/custody/coin_info/",
{
"coin": "ETH"
},
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",
"confirming_threshold": 12,
"dust_threshold": 0,
"token_address": ""
}
}