curl --request PUT \
--url https://api.kraken.com/funding/v1/deposit/address \
--header 'API-Key: <api-key>' \
--header 'API-Nonce: <api-key>' \
--header 'API-Sign: <api-key>' \
--header 'Content-Type: application/json' \
--data '
{
"method_id": "27ede8db-804b-4d91-8e25-46b7b9668730"
}
'import requests
url = "https://api.kraken.com/funding/v1/deposit/address"
payload = { "method_id": "27ede8db-804b-4d91-8e25-46b7b9668730" }
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({method_id: '27ede8db-804b-4d91-8e25-46b7b9668730'})
};
fetch('https://api.kraken.com/funding/v1/deposit/address', 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/deposit/address"
payload := strings.NewReader("{\n \"method_id\": \"27ede8db-804b-4d91-8e25-46b7b9668730\"\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))
}{
"address_details": {
"crypto": {
"address": "AikyzpZZcNAeovd6XnyEaEe6YB1tPKkXZF37rUWD..."
}
}
}Claim Funding Deposit Address
Claim a deposit address for a funding method. This generates an address for receiving funds.
API Key Permissions Required: Funds permissions - Deposit
curl --request PUT \
--url https://api.kraken.com/funding/v1/deposit/address \
--header 'API-Key: <api-key>' \
--header 'API-Nonce: <api-key>' \
--header 'API-Sign: <api-key>' \
--header 'Content-Type: application/json' \
--data '
{
"method_id": "27ede8db-804b-4d91-8e25-46b7b9668730"
}
'import requests
url = "https://api.kraken.com/funding/v1/deposit/address"
payload = { "method_id": "27ede8db-804b-4d91-8e25-46b7b9668730" }
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({method_id: '27ede8db-804b-4d91-8e25-46b7b9668730'})
};
fetch('https://api.kraken.com/funding/v1/deposit/address', 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/deposit/address"
payload := strings.NewReader("{\n \"method_id\": \"27ede8db-804b-4d91-8e25-46b7b9668730\"\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))
}{
"address_details": {
"crypto": {
"address": "AikyzpZZcNAeovd6XnyEaEe6YB1tPKkXZF37rUWD..."
}
}
}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.
Query Parameters
Account ID
Body
Request to claim a deposit address for a specific funding method. This generates a deposit address for receiving funds.
Funding method to claim a deposit address for.
^[0-9a-fA-F]{8}-?(?:[0-9a-fA-F]{4}-?){3}[0-9a-fA-F]{12}$Response
Response containing the details of the claimed deposit address.
- crypto
- fiat
Show child attributes
Show child attributes
Was this page helpful?