Skip to main content
POST
/
private
/
TradeVolume
Get Trade Volume
curl --request POST \
  --url https://api.kraken.com/0/private/TradeVolume \
  --header 'API-Key: <api-key>' \
  --header 'API-Sign: <api-key>' \
  --header 'Content-Type: application/json' \
  --data '
{
  "nonce": 1695828490,
  "pair": "XXBT/ZUSD, XETH/ZEUR"
}
'
{
  "error": [],
  "result": {
    "currency": "ZUSD",
    "volume": "200709587.4223",
    "fees": {
      "XXBTZUSD": {
        "fee": "0.1000",
        "min_fee": "0.1000",
        "max_fee": "0.2600",
        "next_fee": null,
        "next_volume": null,
        "tier_volume": "10000000.0000"
      }
    },
    "fees_maker": {
      "XXBTZUSD": {
        "fee": "0.0000",
        "min_fee": "0.0000",
        "max_fee": "0.1600",
        "next_fee": null,
        "next_volume": null,
        "tier_volume": "10000000.0000"
      }
    }
  }
}

Documentation Index

Fetch the complete documentation index at: https://kraken-sandbox.mintlify.app/llms.txt

Use this file to discover all available pages before exploring further.

Authorizations

API-Key
string
header
required

The "API-Key" header should contain your API key.

API-Sign
string
header
required

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
integer<int64>
required

Nonce used in construction of API-Sign header

pair
string

Comma delimited list of asset pairs to get fee info on (optional, but required if any fee info is desired)

rebase_multiplier
enum<string> | null
default:rebased

Optional parameter for viewing xstocks data.

  • rebased: Display in terms of underlying equity.
  • base: Display in terms of SPV tokens.
Available options:
rebased,
base

Response

200 - application/json

Trade Volume retrieved.

result
TradeVolume · object

Trade Volume

error
string[]

Kraken API error