Skip to main content

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

Body

required
    nonce int64required

    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)

Responses

Trade Volume retrieved.

Schema
    result object

    Trade Volume

    currency string

    Fee volume currency (will always be USD)

    volume string

    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

    fee string

    Current fee (in percent)

    min_fee string

    minimum fee for pair (if not fixed fee)

    max_fee string

    maximum fee for pair (if not fixed fee)

    next_fee stringnullable

    next tier's fee for pair (if not fixed fee, null if at lowest fee tier)

    tier_volume stringnullable

    volume level of current tier (if not fixed fee. null if at lowest fee tier)

    next_volume stringnullable

    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

    fee string

    Current fee (in percent)

    min_fee string

    minimum fee for pair (if not fixed fee)

    max_fee string

    maximum fee for pair (if not fixed fee)

    next_fee stringnullable

    next tier's fee for pair (if not fixed fee, null if at lowest fee tier)

    tier_volume stringnullable

    volume level of current tier (if not fixed fee. null if at lowest fee tier)

    next_volume stringnullable

    volume level of next tier (if not fixed fee. null if at lowest fee tier)

    error string[]
Loading...