Retrieve (or generate a new) deposit addresses for a particular asset and method.
API Key Permissions Required: Funds permissions - Query
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' \
--data '
{
"nonce": 1695828271,
"asset": "XBT",
"method": "Bitcoin",
"new": true
}
'{
"error": [],
"result": [
{
"address": "2N9fRkx5JTWXWHmXzZtvhQsufvoYRMq9ExV",
"expiretm": "0",
"new": true
},
{
"address": "2NCpXUCEYr8ur9WXM1tAjZSem2w3aQeTcAo",
"expiretm": "0",
"new": true
},
{
"address": "2Myd4eaAW96ojk38A2uDK4FbioCayvkEgVq",
"expiretm": "0"
},
{
"address": "rLHzPsX3oXdzU2qP17kHCH2G4csZv1rAJh",
"expiretm": "0",
"new": true,
"tag": "1361101127"
},
{
"address": "krakenkraken",
"expiretm": "0",
"memo": "4150096490"
}
]
}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.
Nonce used in construction of API-Sign header
Asset being deposited
Name of the deposit method
Asset class being deposited
currency, tokenized_asset Whether or not to generate a new address
Amount you wish to deposit (only required for method=Bitcoin Lightning)
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' \
--data '
{
"nonce": 1695828271,
"asset": "XBT",
"method": "Bitcoin",
"new": true
}
'{
"error": [],
"result": [
{
"address": "2N9fRkx5JTWXWHmXzZtvhQsufvoYRMq9ExV",
"expiretm": "0",
"new": true
},
{
"address": "2NCpXUCEYr8ur9WXM1tAjZSem2w3aQeTcAo",
"expiretm": "0",
"new": true
},
{
"address": "2Myd4eaAW96ojk38A2uDK4FbioCayvkEgVq",
"expiretm": "0"
},
{
"address": "rLHzPsX3oXdzU2qP17kHCH2G4csZv1rAJh",
"expiretm": "0",
"new": true,
"tag": "1361101127"
},
{
"address": "krakenkraken",
"expiretm": "0",
"memo": "4150096490"
}
]
}