Coinbase Prime API
cURL
curl --request GET \ --url https://api.prime.coinbase.com/v1/portfolios/{portfolio_id}/wallets/{wallet_id}/deposit_instructions
{ "crypto_instructions": { "id": "e84255eb-2e21-439e-a1d0-f5dd1e1292b9", "name": "Wallet 1", "address": "ca13fdc4-e459-4fd9-868e-82291343b213", "account_identifier": "387879289", "account_identifier_name": "memo" } }
Retrieve a specific wallet’s deposit instructions.
WalletsService walletsService = PrimeServiceFactory.createWalletsService(client); GetWalletDepositInstructionsRequest request = new GetWalletDepositInstructionsRequest.Builder() .portfolioId("PORTFOLIO_ID_HERE") .walletId("WALLET_ID_HERE") .depositType(DepositType.CRYPTO) .build(); GetWalletDepositInstructionsResponse response = walletsService.getWalletDepositInstructions(request);
The portfolio ID
The wallet ID
The deposit type
CRYPTO
WIRE
SEN
SWIFT
SEPA
The name of the network
The network id: base, bitcoin, ethereum, solana etc
The network type
The network type: mainnet, testnet, etc
A successful response.
Show child attributes
The ID of the wallet
"e84255eb-2e21-439e-a1d0-f5dd1e1292b9"
The name of the wallet
"Wallet 1"
The address of the wallet
"ca13fdc4-e459-4fd9-868e-82291343b213"
The tag/memo of the address, if applicable -- required for certain assets (e.g. XRP, XLM, etc.)
"387879289"
The blockchain network's terminology for the unique identifier used to identify the receiver of the transaction (different blockchain networks use different names, such as destination_tag or memo)
destination_tag
memo
"memo"
Was this page helpful?