Skip to main content
GET
/
v1
/
custody
/
get_supported_coins
/
request(
  "GET",
  "/v1/custody/get_supported_coins/",{},
  api_key, api_secret, host
)
coboFetch(
  "GET",
  "/v1/custody/mpc/get_supported_chains/",
  {},
  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/get_supported_coins/", map[string]string{})
{
  "success": true,
  "result": [
    {
      "coin": "ETH",
      "display_code": "ETH",
      "description": "Ethereum",
      "decimal": 18,
      "can_deposit": true,
      "can_withdraw": true,
      "require_memo": false,
      "minimum_deposit_threshold": "0"

    },
    {
      "coin": "BTC",
      "display_code": "BTC",
      "description": "Bitcoin",
      "decimal": 8,
      "can_deposit": true,
      "can_withdraw": true,
      "require_memo": false,
      "minimum_deposit_threshold": "0"
    }

]
}

Request

None

Response

success
bool
request successful or failed
result
object[]
request(
  "GET",
  "/v1/custody/get_supported_coins/",{},
  api_key, api_secret, host
)
coboFetch(
  "GET",
  "/v1/custody/mpc/get_supported_chains/",
  {},
  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/get_supported_coins/", map[string]string{})
{
  "success": true,
  "result": [
    {
      "coin": "ETH",
      "display_code": "ETH",
      "description": "Ethereum",
      "decimal": 18,
      "can_deposit": true,
      "can_withdraw": true,
      "require_memo": false,
      "minimum_deposit_threshold": "0"

    },
    {
      "coin": "BTC",
      "display_code": "BTC",
      "description": "Bitcoin",
      "decimal": 8,
      "can_deposit": true,
      "can_withdraw": true,
      "require_memo": false,
      "minimum_deposit_threshold": "0"
    }

]
}