Retrieve a list of withdrawal methods available for the user.
API Key Permissions Required: Funds permissions - Query and Funds permissions - Withdraw
curl --request POST \
--url https://api.kraken.com/0/private/WithdrawMethods \
--header 'API-Key: <api-key>' \
--header 'API-Sign: <api-key>' \
--header 'Content-Type: application/json' \
--data '
{
"nonce": 123,
"asset": "<string>",
"aclass": "currency",
"network": "<string>",
"rebase_multiplier": "rebased"
}
'{
"error": [],
"result": [
{
"asset": "XXBT",
"method": "Bitcoin",
"method_id": "12fca2ad-edae-4d8c-acbb-4a424c1fbdeb",
"network": "Bitcoin",
"network_id": "ee9d686d-aeb6-4e61-9d83-448e3a7511f3",
"minimum": "0.0004",
"fee": {
"aclass": "currency",
"asset": "XXBT",
"fee": "0.00001500"
}
},
{
"asset": "XXBT",
"method": "Bitcoin Lightning",
"method_id": "1ac8da36-8eec-4ed0-977a-82e4b50f2e49",
"network": "Lightning",
"network_id": "03ed9b12-29f1-4dc3-8d05-bd58e3798518",
"minimum": "0.00001",
"fee": {
"aclass": "currency",
"asset": "XXBT",
"fee": "0",
"fee_percentage": "0.1"
}
}
]
}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
Filter methods for specific asset
Filter methods for specific asset class
currency, tokenized_asset Filter methods for specific network
Optional parameter for viewing xstocks data.
rebased: Display in terms of underlying equity.base: Display in terms of SPV tokens.rebased, base curl --request POST \
--url https://api.kraken.com/0/private/WithdrawMethods \
--header 'API-Key: <api-key>' \
--header 'API-Sign: <api-key>' \
--header 'Content-Type: application/json' \
--data '
{
"nonce": 123,
"asset": "<string>",
"aclass": "currency",
"network": "<string>",
"rebase_multiplier": "rebased"
}
'{
"error": [],
"result": [
{
"asset": "XXBT",
"method": "Bitcoin",
"method_id": "12fca2ad-edae-4d8c-acbb-4a424c1fbdeb",
"network": "Bitcoin",
"network_id": "ee9d686d-aeb6-4e61-9d83-448e3a7511f3",
"minimum": "0.0004",
"fee": {
"aclass": "currency",
"asset": "XXBT",
"fee": "0.00001500"
}
},
{
"asset": "XXBT",
"method": "Bitcoin Lightning",
"method_id": "1ac8da36-8eec-4ed0-977a-82e4b50f2e49",
"network": "Lightning",
"network_id": "03ed9b12-29f1-4dc3-8d05-bd58e3798518",
"minimum": "0.00001",
"fee": {
"aclass": "currency",
"asset": "XXBT",
"fee": "0",
"fee_percentage": "0.1"
}
}
]
}