Coinbase International Exchange API
cURL
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" } ]
Returns a list of supported networks and network information for a specific asset.
AssetsService assetsService = IntxServiceFactory.createAssetsService(client); GetSupportedNetworksRequest request = new GetSupportedNetworksRequest.Builder() .asset("BTC") .build(); GetSupportedNetworksResponse response = assetsService.getSupportedNetworks(request);
Was this page helpful?