Skip to main content
GET
/
v1
/
custody
/
mpc
/
coin_info
/
request(
  "GET",
  "/v1/custody/mpc/coin_info/",
  {
    "coin": "BTC",
  },
  api_key, api_secret, host
)
coboFetch('GET', '/v1/custody/mpc/coin_info/', {
    "coin": "BTC",
}, api_key, api_secret, host)
    .then(res => {
        res.json().then((data)=>{
            console.log(JSON.stringify(data, null, 4));
        })
    }).catch(err => {
        console.log(err)
    });
Request("GET", "/v1/custody/mpc/coin_info/", map[string]string{
    "coin": "BTC",
})
{
    "success": true,
    "result": {
        "coin": "BTC",
        "display_code": "BTC",
        "description": "Bitcoin",
        "decimal": 8,
        "can_deposit": true,
        "can_withdraw": true,
        "require_memo": false,
        "minimum_deposit_threshold": "10000",
        "balance": "0",
        "abs_balance": "0",
        "fee_coin": "BTC",
        "abs_estimate_fee": "0.00079252",
        "abs_estimate_fee_usd": "37.03",
        "confirming_threshold": 4,
        "dust_threshold": 546,
        "token_address": "",
        "asset_model_type": 1
    }
}

Request

coin
String
required
Coin code

Response

success
bool
request successful or failed
result
object
request(
  "GET",
  "/v1/custody/mpc/coin_info/",
  {
    "coin": "BTC",
  },
  api_key, api_secret, host
)
coboFetch('GET', '/v1/custody/mpc/coin_info/', {
    "coin": "BTC",
}, api_key, api_secret, host)
    .then(res => {
        res.json().then((data)=>{
            console.log(JSON.stringify(data, null, 4));
        })
    }).catch(err => {
        console.log(err)
    });
Request("GET", "/v1/custody/mpc/coin_info/", map[string]string{
    "coin": "BTC",
})
{
    "success": true,
    "result": {
        "coin": "BTC",
        "display_code": "BTC",
        "description": "Bitcoin",
        "decimal": 8,
        "can_deposit": true,
        "can_withdraw": true,
        "require_memo": false,
        "minimum_deposit_threshold": "10000",
        "balance": "0",
        "abs_balance": "0",
        "fee_coin": "BTC",
        "abs_estimate_fee": "0.00079252",
        "abs_estimate_fee_usd": "37.03",
        "confirming_threshold": 4,
        "dust_threshold": 546,
        "token_address": "",
        "asset_model_type": 1
    }
}