List Funding Assets
curl --request GET \
--url https://api.kraken.com/funding/v1/assets/{direction} \
--header 'API-Key: <api-key>' \
--header 'API-Nonce: <api-key>' \
--header 'API-Sign: <api-key>'import requests
url = "https://api.kraken.com/funding/v1/assets/{direction}"
headers = {
"API-Key": "<api-key>",
"API-Sign": "<api-key>",
"API-Nonce": "<api-key>"
}
response = requests.get(url, headers=headers)
print(response.text)const options = {
method: 'GET',
headers: {'API-Key': '<api-key>', 'API-Sign': '<api-key>', 'API-Nonce': '<api-key>'}
};
fetch('https://api.kraken.com/funding/v1/assets/{direction}', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));package main
import (
"fmt"
"net/http"
"io"
)
func main() {
url := "https://api.kraken.com/funding/v1/assets/{direction}"
req, _ := http.NewRequest("GET", url, nil)
req.Header.Add("API-Key", "<api-key>")
req.Header.Add("API-Sign", "<api-key>")
req.Header.Add("API-Nonce", "<api-key>")
res, _ := http.DefaultClient.Do(req)
defer res.Body.Close()
body, _ := io.ReadAll(res.Body)
fmt.Println(string(body))
}{
"currency": [
{
"name": "USDC"
},
{
"name": "USDT"
},
{
"name": "BTC"
},
{
"name": "ETH"
},
{
"name": "SOL"
}
],
"tokenized_asset": [
{
"name": "TONXx"
},
{
"name": "NVDAx"
},
{
"name": "AAPLx"
}
]
}Funding (Beta)
List Funding Assets
Retrieve assets available for the requested direction (deposit or withdraw).
API Key Permissions Required: Funds permissions - Query
GET
/
funding
/
v1
/
assets
/
{direction}
List Funding Assets
curl --request GET \
--url https://api.kraken.com/funding/v1/assets/{direction} \
--header 'API-Key: <api-key>' \
--header 'API-Nonce: <api-key>' \
--header 'API-Sign: <api-key>'import requests
url = "https://api.kraken.com/funding/v1/assets/{direction}"
headers = {
"API-Key": "<api-key>",
"API-Sign": "<api-key>",
"API-Nonce": "<api-key>"
}
response = requests.get(url, headers=headers)
print(response.text)const options = {
method: 'GET',
headers: {'API-Key': '<api-key>', 'API-Sign': '<api-key>', 'API-Nonce': '<api-key>'}
};
fetch('https://api.kraken.com/funding/v1/assets/{direction}', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));package main
import (
"fmt"
"net/http"
"io"
)
func main() {
url := "https://api.kraken.com/funding/v1/assets/{direction}"
req, _ := http.NewRequest("GET", url, nil)
req.Header.Add("API-Key", "<api-key>")
req.Header.Add("API-Sign", "<api-key>")
req.Header.Add("API-Nonce", "<api-key>")
res, _ := http.DefaultClient.Do(req)
defer res.Body.Close()
body, _ := io.ReadAll(res.Body)
fmt.Println(string(body))
}{
"currency": [
{
"name": "USDC"
},
{
"name": "USDT"
},
{
"name": "BTC"
},
{
"name": "ETH"
},
{
"name": "SOL"
}
],
"tokenized_asset": [
{
"name": "TONXx"
},
{
"name": "NVDAx"
},
{
"name": "AAPLx"
}
]
}Authorizations
API-Key & API-Sign & API-NonceAPI-Key & API-Sign & API-Nonce & API-OTP
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
Filter by direction.
Available options:
deposit, withdraw Query Parameters
Filter by asset class.
Available options:
currency, tokenized_asset Account ID
Was this page helpful?