curl --request PUT \
--url https://api.kraken.com/funding/v1/addresses/{id} \
--header 'API-Key: <api-key>' \
--header 'API-Nonce: <api-key>' \
--header 'API-Sign: <api-key>' \
--header 'Content-Type: application/json' \
--data '
{
"name": "Personal Wallet",
"description": "My hardware wallet address"
}
'import requests
url = "https://api.kraken.com/funding/v1/addresses/{id}"
payload = {
"name": "Personal Wallet",
"description": "My hardware wallet address"
}
headers = {
"API-Key": "<api-key>",
"API-Sign": "<api-key>",
"API-Nonce": "<api-key>",
"Content-Type": "application/json"
}
response = requests.put(url, json=payload, headers=headers)
print(response.text)const options = {
method: 'PUT',
headers: {
'API-Key': '<api-key>',
'API-Sign': '<api-key>',
'API-Nonce': '<api-key>',
'Content-Type': 'application/json'
},
body: JSON.stringify({name: 'Personal Wallet', description: 'My hardware wallet address'})
};
fetch('https://api.kraken.com/funding/v1/addresses/{id}', 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/funding/v1/addresses/{id}"
payload := strings.NewReader("{\n \"name\": \"Personal Wallet\",\n \"description\": \"My hardware wallet address\"\n}")
req, _ := http.NewRequest("PUT", url, payload)
req.Header.Add("API-Key", "<api-key>")
req.Header.Add("API-Sign", "<api-key>")
req.Header.Add("API-Nonce", "<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))
}{
"verified": true
}Update Funding Address
Update the name and/or description of a saved withdrawal address.
API Key Permissions Required: Funds permissions - Add withdrawal addresses
curl --request PUT \
--url https://api.kraken.com/funding/v1/addresses/{id} \
--header 'API-Key: <api-key>' \
--header 'API-Nonce: <api-key>' \
--header 'API-Sign: <api-key>' \
--header 'Content-Type: application/json' \
--data '
{
"name": "Personal Wallet",
"description": "My hardware wallet address"
}
'import requests
url = "https://api.kraken.com/funding/v1/addresses/{id}"
payload = {
"name": "Personal Wallet",
"description": "My hardware wallet address"
}
headers = {
"API-Key": "<api-key>",
"API-Sign": "<api-key>",
"API-Nonce": "<api-key>",
"Content-Type": "application/json"
}
response = requests.put(url, json=payload, headers=headers)
print(response.text)const options = {
method: 'PUT',
headers: {
'API-Key': '<api-key>',
'API-Sign': '<api-key>',
'API-Nonce': '<api-key>',
'Content-Type': 'application/json'
},
body: JSON.stringify({name: 'Personal Wallet', description: 'My hardware wallet address'})
};
fetch('https://api.kraken.com/funding/v1/addresses/{id}', 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/funding/v1/addresses/{id}"
payload := strings.NewReader("{\n \"name\": \"Personal Wallet\",\n \"description\": \"My hardware wallet address\"\n}")
req, _ := http.NewRequest("PUT", url, payload)
req.Header.Add("API-Key", "<api-key>")
req.Header.Add("API-Sign", "<api-key>")
req.Header.Add("API-Nonce", "<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))
}{
"verified": true
}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.
The "API-Nonce" header should contain an always-increasing 64-bit integer, most commonly a Unix timestamp in milliseconds. Each request must use a nonce greater than the nonce of the previous request signed with the same API key.
Path Parameters
Unique identifier of the address to update.
^AB[a-zA-Z0-9]{5}-[a-zA-Z0-9]{5}-[a-zA-Z0-9]{6}$Query Parameters
Account ID
Body
Request to update the name and/or description of an existing funding address.
Response
Whether the address is verified and ready for use.
Was this page helpful?