Get Withdrawal Methods
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"
}
'import requests
url = "https://api.kraken.com/0/private/WithdrawMethods"
payload = {
"nonce": 123,
"asset": "<string>",
"aclass": "currency",
"network": "<string>",
"rebase_multiplier": "rebased"
}
headers = {
"API-Key": "<api-key>",
"API-Sign": "<api-key>",
"Content-Type": "application/json"
}
response = requests.post(url, json=payload, headers=headers)
print(response.text)const options = {
method: 'POST',
headers: {
'API-Key': '<api-key>',
'API-Sign': '<api-key>',
'Content-Type': 'application/json'
},
body: JSON.stringify({
nonce: 123,
asset: '<string>',
aclass: 'currency',
network: '<string>',
rebase_multiplier: 'rebased'
})
};
fetch('https://api.kraken.com/0/private/WithdrawMethods', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));package main
import (
"fmt"
"strings"
"net/http"
"io"
)
func main() {
url := "https://api.kraken.com/0/private/WithdrawMethods"
payload := strings.NewReader("{\n \"nonce\": 123,\n \"asset\": \"<string>\",\n \"aclass\": \"currency\",\n \"network\": \"<string>\",\n \"rebase_multiplier\": \"rebased\"\n}")
req, _ := http.NewRequest("POST", url, payload)
req.Header.Add("API-Key", "<api-key>")
req.Header.Add("API-Sign", "<api-key>")
req.Header.Add("Content-Type", "application/json")
res, _ := http.DefaultClient.Do(req)
defer res.Body.Close()
body, _ := io.ReadAll(res.Body)
fmt.Println(string(body))
}{
"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"
}
}
]
}Funding (Legacy)
Get Withdrawal Methods
deprecated
This endpoint will remain active but will no longer receive updates. It’s highly recommended to migrate to the Funding (Beta) API — see the Funding guide and API reference.
Retrieve a list of withdrawal methods available for the user.
API Key Permissions Required: Funds permissions - Query and Funds permissions - Withdraw
POST
/
private
/
WithdrawMethods
Get Withdrawal Methods
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"
}
'import requests
url = "https://api.kraken.com/0/private/WithdrawMethods"
payload = {
"nonce": 123,
"asset": "<string>",
"aclass": "currency",
"network": "<string>",
"rebase_multiplier": "rebased"
}
headers = {
"API-Key": "<api-key>",
"API-Sign": "<api-key>",
"Content-Type": "application/json"
}
response = requests.post(url, json=payload, headers=headers)
print(response.text)const options = {
method: 'POST',
headers: {
'API-Key': '<api-key>',
'API-Sign': '<api-key>',
'Content-Type': 'application/json'
},
body: JSON.stringify({
nonce: 123,
asset: '<string>',
aclass: 'currency',
network: '<string>',
rebase_multiplier: 'rebased'
})
};
fetch('https://api.kraken.com/0/private/WithdrawMethods', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));package main
import (
"fmt"
"strings"
"net/http"
"io"
)
func main() {
url := "https://api.kraken.com/0/private/WithdrawMethods"
payload := strings.NewReader("{\n \"nonce\": 123,\n \"asset\": \"<string>\",\n \"aclass\": \"currency\",\n \"network\": \"<string>\",\n \"rebase_multiplier\": \"rebased\"\n}")
req, _ := http.NewRequest("POST", url, payload)
req.Header.Add("API-Key", "<api-key>")
req.Header.Add("API-Sign", "<api-key>")
req.Header.Add("Content-Type", "application/json")
res, _ := http.DefaultClient.Do(req)
defer res.Body.Close()
body, _ := io.ReadAll(res.Body)
fmt.Println(string(body))
}{
"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"
}
}
]
}This endpoint will remain active but will no longer receive updates. It’s highly recommended to migrate to the Funding (Beta) API — see the Funding guide and API reference.
Authorizations
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.
Body
application/json
Nonce used in construction of API-Sign header
Filter methods for specific asset
Filter methods for specific asset class
Available options:
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.
Available options:
rebased, base Was this page helpful?