GET
/
api
/
v1
/
assets
/
{asset}
/
networks
curl --request GET \
  --url https://api.international.coinbase.com/api/v1/assets/{asset}/networks
[
  {
    "asset_id": 3379757734632303,
    "asset_uuid": "592a8039-db3e-45ed-b752-ffd1983eead2",
    "asset_name": "ETH",
    "network_arn_id": "networks/ethereum-mainnet/assets/313ef8a9-ae5a-5f2f-8a56-572c0e2a4d5a",
    "min_withdrawal_amt": 0.001,
    "max_withdrawal_amt": 355.575,
    "network_confirms": 5,
    "processing_time": 3600,
    "is_default": true,
    "network_name": "ethereum",
    "display_name": "Ethereum"
  }
]
AssetsService assetsService = IntxServiceFactory.createAssetsService(client);
GetSupportedNetworksRequest request = new GetSupportedNetworksRequest.Builder()
    .asset("BTC")
    .build();
GetSupportedNetworksResponse response = assetsService.getSupportedNetworks(request);

For more information, please visit the INTX Java SDK.

Path Parameters

asset
string
required

Identifies the asset by name (e.g., BTC), UUID (e.g., 291efb0f-2396-4d41-ad03-db3b2311cb2c), or asset ID (e.g., 1482439423963469)

Response

200
application/json

Asset found

The response is of type object[].