Retrieve (or generate a new) deposit addresses for a particular asset and funding method. Use the Get Deposit Methods API to identify the appropriate deposit method.
curl --request POST \
--url https://api.kraken.com/0/private/DepositAddresses \
--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,
"asset": "<string>",
"method": "<string>",
"aclass": "currency",
"new": false
}
'{
"error": [
{
"severity": "E",
"errorClass": "<string>",
"type": "<string>",
"errorMessage": "<string>"
}
],
"result": [
{
"address": "<string>",
"expiretm": 0,
"memo": "<string>",
"new": true,
"tag": "<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})Nonce used in construction of API-Sign header
1 - 16Name of the deposit method
currency, forex, equity, equitypair, nft, volume Whether or not to generate a new address
curl --request POST \
--url https://api.kraken.com/0/private/DepositAddresses \
--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,
"asset": "<string>",
"method": "<string>",
"aclass": "currency",
"new": false
}
'{
"error": [
{
"severity": "E",
"errorClass": "<string>",
"type": "<string>",
"errorMessage": "<string>"
}
],
"result": [
{
"address": "<string>",
"expiretm": 0,
"memo": "<string>",
"new": true,
"tag": "<string>"
}
]
}