Clear the off-book max leverage cap
curl --request DELETE \
--url https://futures.kraken.com/derivatives/api/v3/rfq-assignment/max-leverage \
--header 'APIKey: <api-key>' \
--header 'Authent: <api-key>'import requests
url = "https://futures.kraken.com/derivatives/api/v3/rfq-assignment/max-leverage"
headers = {
"APIKey": "<api-key>",
"Authent": "<api-key>"
}
response = requests.delete(url, headers=headers)
print(response.text)const options = {method: 'DELETE', headers: {APIKey: '<api-key>', Authent: '<api-key>'}};
fetch('https://futures.kraken.com/derivatives/api/v3/rfq-assignment/max-leverage', 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://futures.kraken.com/derivatives/api/v3/rfq-assignment/max-leverage"
req, _ := http.NewRequest("DELETE", url, nil)
req.Header.Add("APIKey", "<api-key>")
req.Header.Add("Authent", "<api-key>")
res, _ := http.DefaultClient.Do(req)
defer res.Body.Close()
body, _ := io.ReadAll(res.Body)
fmt.Println(string(body))
}{
"result": "success",
"serverTime": "2022-06-28T15:01:12.762Z",
"maxLeverage": null
}Trading Settings
Clear the off-book max leverage cap
Clears the account-level off-book maximum leverage cap for the authenticated master account. After clearing, off-book fills are no longer constrained by an account-level cap.
Clearing the cap is the opposite of setting it to 0: clearing lifts the constraint
entirely, while 0 blocks all exposure-increasing off-book fills.
Only master accounts may call this endpoint.
DELETE
/
rfq-assignment
/
max-leverage
Clear the off-book max leverage cap
curl --request DELETE \
--url https://futures.kraken.com/derivatives/api/v3/rfq-assignment/max-leverage \
--header 'APIKey: <api-key>' \
--header 'Authent: <api-key>'import requests
url = "https://futures.kraken.com/derivatives/api/v3/rfq-assignment/max-leverage"
headers = {
"APIKey": "<api-key>",
"Authent": "<api-key>"
}
response = requests.delete(url, headers=headers)
print(response.text)const options = {method: 'DELETE', headers: {APIKey: '<api-key>', Authent: '<api-key>'}};
fetch('https://futures.kraken.com/derivatives/api/v3/rfq-assignment/max-leverage', 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://futures.kraken.com/derivatives/api/v3/rfq-assignment/max-leverage"
req, _ := http.NewRequest("DELETE", url, nil)
req.Header.Add("APIKey", "<api-key>")
req.Header.Add("Authent", "<api-key>")
res, _ := http.DefaultClient.Do(req)
defer res.Body.Close()
body, _ := io.ReadAll(res.Body)
fmt.Println(string(body))
}{
"result": "success",
"serverTime": "2022-06-28T15:01:12.762Z",
"maxLeverage": null
}Authorizations
General API key with full access
Authentication string
Response
200 - application/json
OK
Was this page helpful?