Skip to main content
GET
/
api
/
v1
/
transfers
/
withdraw
/
{portfolio}
/
{asset}
/
counterparty-withdrawal-limit
Get counterparty withdrawal limit
curl --request GET \
  --url https://api.international.coinbase.com/api/v1/transfers/withdraw/{portfolio}/{asset}/counterparty-withdrawal-limit \
  --header 'CB-ACCESS-KEY: <api-key>' \
  --header 'CB-ACCESS-PASSPHRASE: <api-key>' \
  --header 'CB-ACCESS-SIGN: <api-key>' \
  --header 'CB-ACCESS-TIMESTAMP: <api-key>'
{
  "max_ctn_withdraw_amount": "<string>"
}
  • TS/JS
const transfersService = new TransfersService(client);

transfersService.getCounterpartyWithdrawalLimit({
    counterpartyId: 'your-counterparty-id',
    asset: 'ETH',
}).then(async (response) => {
    console.log('Withdrawal Limit: ', response);
})
For more information, please visit the INTX TS SDK.

Authorizations

CB-ACCESS-KEY
string
header
required
CB-ACCESS-PASSPHRASE
string
header
required
CB-ACCESS-SIGN
string
header
required
CB-ACCESS-TIMESTAMP
string
header
required

Path Parameters

portfolio
string
required
asset
string
required

Response

max_ctn_withdraw_amount
string