Retrieve a list of withdrawal addresses for a specified vault.
curl --request POST \
--url https://api.kraken.com/0/private/WithdrawAddresses \
--header 'API-Key: <api-key>' \
--header 'API-Sign: <api-key>' \
--header 'Content-Type: application/json' \
--header 'x-vault-id: <x-vault-id>' \
--data '
{
"nonce": 123,
"aclass": "currency",
"asset": "<string>",
"method": "<string>",
"key": "<string>",
"verified": true
}
'{
"error": [
{
"severity": "E",
"errorClass": "<string>",
"type": "<string>",
"errorMessage": "<string>"
}
],
"result": [
{
"verified": true,
"address": "<string>",
"asset": "<string>",
"method": "<string>",
"key": "<string>",
"memo": "<string>",
"tag": "<string>",
"networks": [
"<string>"
]
}
]
}Documentation Index
Fetch the complete documentation index at: https://kraken-sandbox.mintlify.app/llms.txt
Use this file to discover all available pages before exploring further.
The "API-Key" header should contain your API key.
Authenticated requests should be signed with the "API-Sign" header, using a signature generated with your private key, nonce, encoded payload, and URI path.
Vault ID or Vault IIBAN
12 - 19(^V[A-Z2-7]{12}[ACEGIKMOQSUWY246]$|AA[A-Z0-9]{2} ?[A-Z0-9]{4} ?[A-Z0-9]{4} ?[A-Z0-9]{4})The preferred asset name to use
new, alt Nonce used in construction of API-Sign header
Asset class of asset being withdrawn - defaults to Currency
currency, equity, equity-pair, forex, nft, volume The asset to query {?asset=}
1 - 16The method used to withdraw to the address
Withdrawal key name, as set up on your account
The verification status of the withdrawal address
curl --request POST \
--url https://api.kraken.com/0/private/WithdrawAddresses \
--header 'API-Key: <api-key>' \
--header 'API-Sign: <api-key>' \
--header 'Content-Type: application/json' \
--header 'x-vault-id: <x-vault-id>' \
--data '
{
"nonce": 123,
"aclass": "currency",
"asset": "<string>",
"method": "<string>",
"key": "<string>",
"verified": true
}
'{
"error": [
{
"severity": "E",
"errorClass": "<string>",
"type": "<string>",
"errorMessage": "<string>"
}
],
"result": [
{
"verified": true,
"address": "<string>",
"asset": "<string>",
"method": "<string>",
"key": "<string>",
"memo": "<string>",
"tag": "<string>",
"networks": [
"<string>"
]
}
]
}