Coinbase Prime API
cURL
curl --request GET \ --url https://api.prime.coinbase.com/v1/portfolios/{portfolio_id}/wallets/{wallet_id}
{ "wallet": { "id": "<string>", "name": "<string>", "symbol": "<string>", "type": "UNKNOWN_WALLET_TYPE", "created_at": "2023-11-07T05:31:56Z", "address": "<string>", "visibility": "WALLET_VISIBILITY_UNSPECIFIED", "network": { "id": "<string>", "type": "<string>" } } }
Retrieve a specific wallet by Wallet ID.
WalletsService walletsService = PrimeServiceFactory.createWalletsService(client); GetWalletByIdRequest request = new GetWalletByIdRequest.Builder() .portfolioId("PORTFOLIO_ID_HERE") .walletId("WALLET_ID_HERE") .build(); GetWalletByIdResponse response = walletsService.getWalletById(request);
Portfolio ID
Wallet ID
A successful response.
The response is of type object.
object
Was this page helpful?