Get Deposit Methods
curl --request POST \
--url https://api.kraken.com/0/private/DepositMethods \
--header 'API-Key: <api-key>' \
--header 'API-Sign: <api-key>' \
--header 'Content-Type: application/json' \
--data '
{
"nonce": 1695828271,
"asset": "XBT"
}
'import requests
url = "https://api.kraken.com/0/private/DepositMethods"
payload = {
"nonce": 1695828271,
"asset": "XBT"
}
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: 1695828271, asset: 'XBT'})
};
fetch('https://api.kraken.com/0/private/DepositMethods', 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/DepositMethods"
payload := strings.NewReader("{\n \"nonce\": 1695828271,\n \"asset\": \"XBT\"\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": [
{
"method": "Bitcoin",
"limit": false,
"fee": "0.0000000000",
"gen-address": true,
"minimum": "0.00010000"
},
{
"method": "Bitcoin Lightning",
"limit": false,
"fee": "0.00000000",
"minimum": "0.00010000"
}
]
}Funding (Legacy)
Get Deposit 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 methods available for depositing a particular asset.
API Key Permissions Required: Funds permissions - Query and Funds permissions - Deposit
POST
/
private
/
DepositMethods
Get Deposit Methods
curl --request POST \
--url https://api.kraken.com/0/private/DepositMethods \
--header 'API-Key: <api-key>' \
--header 'API-Sign: <api-key>' \
--header 'Content-Type: application/json' \
--data '
{
"nonce": 1695828271,
"asset": "XBT"
}
'import requests
url = "https://api.kraken.com/0/private/DepositMethods"
payload = {
"nonce": 1695828271,
"asset": "XBT"
}
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: 1695828271, asset: 'XBT'})
};
fetch('https://api.kraken.com/0/private/DepositMethods', 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/DepositMethods"
payload := strings.NewReader("{\n \"nonce\": 1695828271,\n \"asset\": \"XBT\"\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": [
{
"method": "Bitcoin",
"limit": false,
"fee": "0.0000000000",
"gen-address": true,
"minimum": "0.00010000"
},
{
"method": "Bitcoin Lightning",
"limit": false,
"fee": "0.00000000",
"minimum": "0.00010000"
}
]
}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
Asset being deposited
Asset class being deposited (optional)
Available options:
currency, tokenized_asset 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?