Get Trade Volume
POST/private/TradeVolume
Returns 30 day USD trading volume and resulting fee schedule for any asset pair(s) provided. Fees will not be included if pair
is not specified as Kraken fees differ by asset pair.
Note: If an asset pair is on a maker/taker fee schedule, the taker side is given in fees
and maker side in fees_maker
. For pairs not on maker/taker, they will only be given in fees
.
API Key Permissions Required: Funds permissions - Query
Request
- application/json
Body
required
Nonce used in construction of API-Sign
header
Comma delimited list of asset pairs to get fee info on (optional, but required if any fee info is desired)
Responses
- 200
Trade Volume retrieved.
- application/json
- Schema
- Example (from schema)
Schema
result object
Trade Volume
Fee volume currency (will always be USD)
Current fee discount volume (in USD, breakdown by subaccount if applicable and logged in to master account)
fees object
Taker fees that will be applied for each pair
included in the request. Default None
if pair
is not requested.
property name* FeeTierInfo
Fee Tier Info
Current fee (in percent)
minimum fee for pair (if not fixed fee)
maximum fee for pair (if not fixed fee)
next tier's fee for pair (if not fixed fee, null if at lowest fee tier)
volume level of current tier (if not fixed fee. null if at lowest fee tier)
volume level of next tier (if not fixed fee. null if at lowest fee tier)
fees_maker object
Maker fees that will be applied for this each pair
included in the request. Default None
if pair
is not requested.
property name* FeeTierInfo
Fee Tier Info
Current fee (in percent)
minimum fee for pair (if not fixed fee)
maximum fee for pair (if not fixed fee)
next tier's fee for pair (if not fixed fee, null if at lowest fee tier)
volume level of current tier (if not fixed fee. null if at lowest fee tier)
volume level of next tier (if not fixed fee. null if at lowest fee tier)
{
"error": [],
"result": {
"currency": "ZUSD",
"volume": "200709587.4223",
"fees": {
"XXBTZUSD": {
"fee": "0.1000",
"minfee": "0.1000",
"maxfee": "0.2600",
"nextfee": null,
"nextvolume": null,
"tiervolume": "10000000.0000"
}
},
"fees_maker": {
"XXBTZUSD": {
"fee": "0.0000",
"minfee": "0.0000",
"maxfee": "0.1600",
"nextfee": null,
"nextvolume": null,
"tiervolume": "10000000.0000"
}
}
}
}