Get fee schedule volumes
curl --request GET \
--url https://futures.kraken.com/derivatives/api/v3/feeschedules/volumes \
--header 'APIKey: <api-key>' \
--header 'Authent: <api-key>'import requests
url = "https://futures.kraken.com/derivatives/api/v3/feeschedules/volumes"
headers = {
"APIKey": "<api-key>",
"Authent": "<api-key>"
}
response = requests.get(url, headers=headers)
print(response.text)const options = {method: 'GET', headers: {APIKey: '<api-key>', Authent: '<api-key>'}};
fetch('https://futures.kraken.com/derivatives/api/v3/feeschedules/volumes', 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/feeschedules/volumes"
req, _ := http.NewRequest("GET", 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": "2016-02-25T09:45:53.818Z",
"volumesByFeeSchedule": {
"eef90775-995b-4596-9257-0917f6134766": 53823
}
}Fee Schedules
Get fee schedule volumes
deprecated
DEPRECATED — Effective 2026-06-22, the volumes and fee schedule associations returned by this endpoint no longer reflect the fees actually charged on Futures trades. Futures fee calculation has been migrated to a centralised Kraken fee service.
To determine the fee rate applied to your trades, use the Spot
GetTradeVolume
endpoint authenticated with a Spot API key.
Returns your fee schedule volumes for each fee schedule.
GET
/
feeschedules
/
volumes
Get fee schedule volumes
curl --request GET \
--url https://futures.kraken.com/derivatives/api/v3/feeschedules/volumes \
--header 'APIKey: <api-key>' \
--header 'Authent: <api-key>'import requests
url = "https://futures.kraken.com/derivatives/api/v3/feeschedules/volumes"
headers = {
"APIKey": "<api-key>",
"Authent": "<api-key>"
}
response = requests.get(url, headers=headers)
print(response.text)const options = {method: 'GET', headers: {APIKey: '<api-key>', Authent: '<api-key>'}};
fetch('https://futures.kraken.com/derivatives/api/v3/feeschedules/volumes', 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/feeschedules/volumes"
req, _ := http.NewRequest("GET", 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": "2016-02-25T09:45:53.818Z",
"volumesByFeeSchedule": {
"eef90775-995b-4596-9257-0917f6134766": 53823
}
}Authorizations
General API key with at least read-only access
Authentication string
Response
200 - application/json
- Success Response
- Errors
List containing the 30-day volume.
Show child attributes
Show child attributes
Example:
{ "d46c2190-81e3-4370-a333-424f24387829": 10, "7fc4d7c0-464f-4029-a9bb-55856d0c5247": 10 }
Available options:
success Example:
"success"
Server time in Coordinated Universal Time (UTC)
Example:
"2020-08-27T17:03:33.196Z"
Was this page helpful?