curl --request GET \
--url https://test.deribit.com/api/v2/private/get_account_summaries \
--header 'Content-Type: application/json' \
--data '
{
"jsonrpc": "2.0",
"id": 2515,
"method": "private/get_account_summaries",
"params": {
"extended": true
}
}
'import requests
url = "https://test.deribit.com/api/v2/private/get_account_summaries"
payload = {
"jsonrpc": "2.0",
"id": 2515,
"method": "private/get_account_summaries",
"params": { "extended": True }
}
headers = {"Content-Type": "application/json"}
response = requests.get(url, json=payload, headers=headers)
print(response.text)const options = {
method: 'GET',
headers: {'Content-Type': 'application/json'},
body: JSON.stringify({
jsonrpc: '2.0',
id: 2515,
method: 'private/get_account_summaries',
params: {extended: true}
})
};
fetch('https://test.deribit.com/api/v2/private/get_account_summaries', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));<?php
$curl = curl_init();
curl_setopt_array($curl, [
CURLOPT_URL => "https://test.deribit.com/api/v2/private/get_account_summaries",
CURLOPT_RETURNTRANSFER => true,
CURLOPT_ENCODING => "",
CURLOPT_MAXREDIRS => 10,
CURLOPT_TIMEOUT => 30,
CURLOPT_HTTP_VERSION => CURL_HTTP_VERSION_1_1,
CURLOPT_CUSTOMREQUEST => "GET",
CURLOPT_POSTFIELDS => json_encode([
'jsonrpc' => '2.0',
'id' => 2515,
'method' => 'private/get_account_summaries',
'params' => [
'extended' => true
]
]),
CURLOPT_HTTPHEADER => [
"Content-Type: application/json"
],
]);
$response = curl_exec($curl);
$err = curl_error($curl);
curl_close($curl);
if ($err) {
echo "cURL Error #:" . $err;
} else {
echo $response;
}package main
import (
"fmt"
"strings"
"net/http"
"io"
)
func main() {
url := "https://test.deribit.com/api/v2/private/get_account_summaries"
payload := strings.NewReader("{\n \"jsonrpc\": \"2.0\",\n \"id\": 2515,\n \"method\": \"private/get_account_summaries\",\n \"params\": {\n \"extended\": true\n }\n}")
req, _ := http.NewRequest("GET", url, payload)
req.Header.Add("Content-Type", "application/json")
res, _ := http.DefaultClient.Do(req)
defer res.Body.Close()
body, _ := io.ReadAll(res.Body)
fmt.Println(string(body))
}HttpResponse<String> response = Unirest.get("https://test.deribit.com/api/v2/private/get_account_summaries")
.header("Content-Type", "application/json")
.body("{\n \"jsonrpc\": \"2.0\",\n \"id\": 2515,\n \"method\": \"private/get_account_summaries\",\n \"params\": {\n \"extended\": true\n }\n}")
.asString();require 'uri'
require 'net/http'
url = URI("https://test.deribit.com/api/v2/private/get_account_summaries")
http = Net::HTTP.new(url.host, url.port)
http.use_ssl = true
request = Net::HTTP::Get.new(url)
request["Content-Type"] = 'application/json'
request.body = "{\n \"jsonrpc\": \"2.0\",\n \"id\": 2515,\n \"method\": \"private/get_account_summaries\",\n \"params\": {\n \"extended\": true\n }\n}"
response = http.request(request)
puts response.read_body{
"jsonrpc": "2.0",
"id": 2515,
"result": {
"id": 10,
"email": "user@example.com",
"system_name": "user",
"username": "user",
"block_rfq_self_match_prevention": true,
"creation_timestamp": 1687352432143,
"type": "main",
"referrer_id": null,
"login_enabled": false,
"security_keys_enabled": false,
"mmp_enabled": false,
"interuser_transfers_enabled": false,
"self_trading_reject_mode": "cancel_maker",
"self_trading_extended_to_subaccounts": false,
"summaries": [
{
"currency": "BTC",
"delta_total_map": {
"btc_usd": 31.594357699
},
"margin_balance": 302.62729214,
"futures_session_rpl": -0.03258105,
"options_session_rpl": 0,
"session_upl": 0.05271555,
"options_gamma_map": {
"btc_usd": 0.00001
},
"options_vega": 0.0858,
"options_value": -0.0086,
"available_withdrawal_funds": 301.35396172,
"projected_delta_total": 32.613978,
"maintenance_margin": 0.8857841,
"total_pl": -0.33084225,
"limits": {
"limits_per_currency": false,
"non_matching_engine": {
"burst": 1500,
"rate": 1000
},
"matching_engine": {
"trading": {
"total": {
"burst": 250,
"rate": 200
}
},
"spot": {
"burst": 250,
"rate": 200
},
"quotes": {
"burst": 500,
"rate": 500
},
"max_quotes": {
"burst": 10,
"rate": 10
},
"guaranteed_quotes": {
"burst": 2,
"rate": 2
},
"cancel_all": {
"burst": 250,
"rate": 200
}
}
},
"projected_maintenance_margin": 0.7543841,
"available_funds": 301.38059622,
"options_delta": -1.01962,
"balance": 302.60065765,
"equity": 302.61869214,
"futures_session_upl": 0.05921555,
"fee_balance": 0,
"options_session_upl": -0.0065,
"projected_initial_margin": 1.01529592,
"options_theta": 15.97071,
"portfolio_margining_enabled": false,
"cross_collateral_enabled": false,
"margin_model": "segregated_sm",
"options_vega_map": {
"btc_usd": 0.0858
},
"futures_pl": -0.32434225,
"options_pl": -0.0065,
"initial_margin": 1.24669592,
"spot_reserve": 0,
"delta_total": 31.602958,
"options_gamma": 0.00001,
"session_rpl": -0.03258105,
"fees": {
"btc_usd": {
"option": {
"default": {
"type": "relative",
"taker": 0.625,
"maker": 0.625
},
"block_trade": 0.625
},
"perpetual": {
"default": {
"type": "fixed",
"taker": 0.00035000000000000005,
"maker": -0.0001
},
"block_trade": 0.3
},
"future": {
"default": {
"type": "fixed",
"taker": 0.00035000000000000005,
"maker": -0.0001
},
"block_trade": 0.3
}
}
}
},
{
"currency": "ETH",
"futures_session_upl": 0,
"portfolio_margining_enabled": false,
"available_funds": 99.999598,
"initial_margin": 0.000402,
"futures_session_rpl": 0,
"options_gamma": 0,
"balance": 100,
"options_vega_map": {},
"session_upl": 0,
"fee_balance": 0,
"delta_total_map": {
"eth_usd": 0
},
"projected_maintenance_margin": 0,
"options_gamma_map": {},
"projected_delta_total": 0,
"margin_model": "segregated_sm",
"futures_pl": 0,
"options_theta": 0,
"limits": {
"limits_per_currency": false,
"non_matching_engine": {
"burst": 1500,
"rate": 1000
},
"matching_engine": {
"trading": {
"total": {
"burst": 250,
"rate": 200
}
},
"spot": {
"burst": 250,
"rate": 200
},
"quotes": {
"burst": 500,
"rate": 500
},
"max_quotes": {
"burst": 10,
"rate": 10
},
"guaranteed_quotes": {
"burst": 2,
"rate": 2
},
"cancel_all": {
"burst": 250,
"rate": 200
}
}
},
"options_delta": 0,
"equity": 100,
"projected_initial_margin": 0.0002,
"spot_reserve": 0.0002,
"cross_collateral_enabled": false,
"available_withdrawal_funds": 99.999597,
"delta_total": 0,
"options_session_upl": 0,
"maintenance_margin": 0,
"options_theta_map": {},
"additional_reserve": 0,
"options_pl": 0,
"options_session_rpl": 0,
"options_vega": 0,
"total_pl": 0,
"session_rpl": 0,
"options_value": 0,
"margin_balance": 100,
"fees": {
"eth_usd": {
"option": {
"default": {
"type": "relative",
"taker": 0.5,
"maker": 0.5
},
"block_trade": 0.5
},
"perpetual": {
"default": {
"type": "fixed",
"taker": 0.00025,
"maker": -0.00005
},
"block_trade": 0.2
},
"future": {
"default": {
"type": "fixed",
"taker": 0.00025,
"maker": -0.00005
},
"block_trade": 0.2
}
}
}
}
]
}
}private/get_account_summaries
Retrieves a per-currency list of account summaries for the authenticated user. Each summary includes balance, equity, available funds, and margin information for each currency.
To retrieve summaries for a specific subaccount, use the subaccount_id parameter. When the extended parameter is set to true, additional account details such as account ID, username, email, and account type are included.
Scope: account:read
curl --request GET \
--url https://test.deribit.com/api/v2/private/get_account_summaries \
--header 'Content-Type: application/json' \
--data '
{
"jsonrpc": "2.0",
"id": 2515,
"method": "private/get_account_summaries",
"params": {
"extended": true
}
}
'import requests
url = "https://test.deribit.com/api/v2/private/get_account_summaries"
payload = {
"jsonrpc": "2.0",
"id": 2515,
"method": "private/get_account_summaries",
"params": { "extended": True }
}
headers = {"Content-Type": "application/json"}
response = requests.get(url, json=payload, headers=headers)
print(response.text)const options = {
method: 'GET',
headers: {'Content-Type': 'application/json'},
body: JSON.stringify({
jsonrpc: '2.0',
id: 2515,
method: 'private/get_account_summaries',
params: {extended: true}
})
};
fetch('https://test.deribit.com/api/v2/private/get_account_summaries', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));<?php
$curl = curl_init();
curl_setopt_array($curl, [
CURLOPT_URL => "https://test.deribit.com/api/v2/private/get_account_summaries",
CURLOPT_RETURNTRANSFER => true,
CURLOPT_ENCODING => "",
CURLOPT_MAXREDIRS => 10,
CURLOPT_TIMEOUT => 30,
CURLOPT_HTTP_VERSION => CURL_HTTP_VERSION_1_1,
CURLOPT_CUSTOMREQUEST => "GET",
CURLOPT_POSTFIELDS => json_encode([
'jsonrpc' => '2.0',
'id' => 2515,
'method' => 'private/get_account_summaries',
'params' => [
'extended' => true
]
]),
CURLOPT_HTTPHEADER => [
"Content-Type: application/json"
],
]);
$response = curl_exec($curl);
$err = curl_error($curl);
curl_close($curl);
if ($err) {
echo "cURL Error #:" . $err;
} else {
echo $response;
}package main
import (
"fmt"
"strings"
"net/http"
"io"
)
func main() {
url := "https://test.deribit.com/api/v2/private/get_account_summaries"
payload := strings.NewReader("{\n \"jsonrpc\": \"2.0\",\n \"id\": 2515,\n \"method\": \"private/get_account_summaries\",\n \"params\": {\n \"extended\": true\n }\n}")
req, _ := http.NewRequest("GET", url, payload)
req.Header.Add("Content-Type", "application/json")
res, _ := http.DefaultClient.Do(req)
defer res.Body.Close()
body, _ := io.ReadAll(res.Body)
fmt.Println(string(body))
}HttpResponse<String> response = Unirest.get("https://test.deribit.com/api/v2/private/get_account_summaries")
.header("Content-Type", "application/json")
.body("{\n \"jsonrpc\": \"2.0\",\n \"id\": 2515,\n \"method\": \"private/get_account_summaries\",\n \"params\": {\n \"extended\": true\n }\n}")
.asString();require 'uri'
require 'net/http'
url = URI("https://test.deribit.com/api/v2/private/get_account_summaries")
http = Net::HTTP.new(url.host, url.port)
http.use_ssl = true
request = Net::HTTP::Get.new(url)
request["Content-Type"] = 'application/json'
request.body = "{\n \"jsonrpc\": \"2.0\",\n \"id\": 2515,\n \"method\": \"private/get_account_summaries\",\n \"params\": {\n \"extended\": true\n }\n}"
response = http.request(request)
puts response.read_body{
"jsonrpc": "2.0",
"id": 2515,
"result": {
"id": 10,
"email": "user@example.com",
"system_name": "user",
"username": "user",
"block_rfq_self_match_prevention": true,
"creation_timestamp": 1687352432143,
"type": "main",
"referrer_id": null,
"login_enabled": false,
"security_keys_enabled": false,
"mmp_enabled": false,
"interuser_transfers_enabled": false,
"self_trading_reject_mode": "cancel_maker",
"self_trading_extended_to_subaccounts": false,
"summaries": [
{
"currency": "BTC",
"delta_total_map": {
"btc_usd": 31.594357699
},
"margin_balance": 302.62729214,
"futures_session_rpl": -0.03258105,
"options_session_rpl": 0,
"session_upl": 0.05271555,
"options_gamma_map": {
"btc_usd": 0.00001
},
"options_vega": 0.0858,
"options_value": -0.0086,
"available_withdrawal_funds": 301.35396172,
"projected_delta_total": 32.613978,
"maintenance_margin": 0.8857841,
"total_pl": -0.33084225,
"limits": {
"limits_per_currency": false,
"non_matching_engine": {
"burst": 1500,
"rate": 1000
},
"matching_engine": {
"trading": {
"total": {
"burst": 250,
"rate": 200
}
},
"spot": {
"burst": 250,
"rate": 200
},
"quotes": {
"burst": 500,
"rate": 500
},
"max_quotes": {
"burst": 10,
"rate": 10
},
"guaranteed_quotes": {
"burst": 2,
"rate": 2
},
"cancel_all": {
"burst": 250,
"rate": 200
}
}
},
"projected_maintenance_margin": 0.7543841,
"available_funds": 301.38059622,
"options_delta": -1.01962,
"balance": 302.60065765,
"equity": 302.61869214,
"futures_session_upl": 0.05921555,
"fee_balance": 0,
"options_session_upl": -0.0065,
"projected_initial_margin": 1.01529592,
"options_theta": 15.97071,
"portfolio_margining_enabled": false,
"cross_collateral_enabled": false,
"margin_model": "segregated_sm",
"options_vega_map": {
"btc_usd": 0.0858
},
"futures_pl": -0.32434225,
"options_pl": -0.0065,
"initial_margin": 1.24669592,
"spot_reserve": 0,
"delta_total": 31.602958,
"options_gamma": 0.00001,
"session_rpl": -0.03258105,
"fees": {
"btc_usd": {
"option": {
"default": {
"type": "relative",
"taker": 0.625,
"maker": 0.625
},
"block_trade": 0.625
},
"perpetual": {
"default": {
"type": "fixed",
"taker": 0.00035000000000000005,
"maker": -0.0001
},
"block_trade": 0.3
},
"future": {
"default": {
"type": "fixed",
"taker": 0.00035000000000000005,
"maker": -0.0001
},
"block_trade": 0.3
}
}
}
},
{
"currency": "ETH",
"futures_session_upl": 0,
"portfolio_margining_enabled": false,
"available_funds": 99.999598,
"initial_margin": 0.000402,
"futures_session_rpl": 0,
"options_gamma": 0,
"balance": 100,
"options_vega_map": {},
"session_upl": 0,
"fee_balance": 0,
"delta_total_map": {
"eth_usd": 0
},
"projected_maintenance_margin": 0,
"options_gamma_map": {},
"projected_delta_total": 0,
"margin_model": "segregated_sm",
"futures_pl": 0,
"options_theta": 0,
"limits": {
"limits_per_currency": false,
"non_matching_engine": {
"burst": 1500,
"rate": 1000
},
"matching_engine": {
"trading": {
"total": {
"burst": 250,
"rate": 200
}
},
"spot": {
"burst": 250,
"rate": 200
},
"quotes": {
"burst": 500,
"rate": 500
},
"max_quotes": {
"burst": 10,
"rate": 10
},
"guaranteed_quotes": {
"burst": 2,
"rate": 2
},
"cancel_all": {
"burst": 250,
"rate": 200
}
}
},
"options_delta": 0,
"equity": 100,
"projected_initial_margin": 0.0002,
"spot_reserve": 0.0002,
"cross_collateral_enabled": false,
"available_withdrawal_funds": 99.999597,
"delta_total": 0,
"options_session_upl": 0,
"maintenance_margin": 0,
"options_theta_map": {},
"additional_reserve": 0,
"options_pl": 0,
"options_session_rpl": 0,
"options_vega": 0,
"total_pl": 0,
"session_rpl": 0,
"options_value": 0,
"margin_balance": 100,
"fees": {
"eth_usd": {
"option": {
"default": {
"type": "relative",
"taker": 0.5,
"maker": 0.5
},
"block_trade": 0.5
},
"perpetual": {
"default": {
"type": "fixed",
"taker": 0.00025,
"maker": -0.00005
},
"block_trade": 0.2
},
"future": {
"default": {
"type": "fixed",
"taker": 0.00025,
"maker": -0.00005
},
"block_trade": 0.2
}
}
}
}
]
}
}Query Parameters
The user id for the subaccount
Include additional fields
true
Response
Success response
The JSON-RPC version (2.0)
2.0 Hide child attributes
Hide child attributes
Account id (available when parameter extended = true)
12354
System generated user nickname (available when parameter extended = true)
"myname"
Account name (given by user) (available when parameter extended = true)
"name"
Account type (available when parameter extended = true)
main, subaccount User email (available when parameter extended = true)
"support@deribit.com"
Whether Security Key authentication is enabled (available when parameter extended = true)
false
Whether account is loginable using email and password (available when parameter extended = true and account is a subaccount)
false
Whether MMP is enabled (available when parameter extended = true)
false
true when the inter-user transfers are enabled for user (available when parameter extended = true)
false
Optional identifier of the referrer (of the affiliation program, and available when parameter extended = true), which link was used by this account at registration. It coincides with suffix of the affiliation link path after /reg-
"517.6035"
Time at which the account was created (milliseconds since the Unix epoch; available when parameter extended = true)
1542100802842
Self trading rejection behavior - reject_taker or cancel_maker (available when parameter extended = true)
true if self trading rejection behavior is applied to trades between subaccounts (available when parameter extended = true)
When enabled, Block RFQ self-match prevention stops RFQ execution between accounts under the same legal entity. Independent of general self-match prevention (available when parameter extended = true).
false
Affiliate promotion fee (if greater than 0.0)
0
Which trading products are enabled or can be overwritten for the account
Whether the account receives notifications
false
Aggregated list of per-currency account summaries
Hide child attributes
Hide child attributes
Total profit and loss of all open positions since each position was opened (not limited to the current session). Differs from session_rpl + session_upl, which reset at daily settlement.
0.02032221
Realized profit and loss accrued in the current trading session (since the last daily settlement). Resets at each daily settlement.
0.1
Unrealized profit and loss on open positions in the current trading session (since the last daily settlement).
0.846863
Funds available to increase margin usage (open or enlarge positions). Equal to margin_balance - initial_margin, floored at 0 in the API response. When initial margin usage exceeds 100%, this is 0 and only reducing orders can be placed. When cross collateral is enabled, this aggregated value is calculated by converting the sum of each cross collateral currency's value to the given currency, using each cross collateral currency's index.
2.2638913
Funds available to withdraw in the selected currency. Typically lower than available_funds because withdrawals also exclude positive session profit, locked balance, spot_reserve, additional_reserve, and non-withdrawable external/implied equity components. Always ≥ 0.
2.26
The account's cash balance in the selected currency (deposits, withdrawals, transfers, option premiums, settlements/deliveries, corrections, costs, and insurance refills). Does not include open futures PnL or options mark value.
3.4906363
Currency of the summary
"ETH"
The sum of position deltas.
DeltaTotal = Net Transaction Delta of options + BTC Position of Futures
The DeltaTotal uses the Net Transaction Delta (or price adjusted Delta) of the options, where Net Transaction Delta = Black Scholes Delta - Mark Price of Options.
This is because, from a risk perspective, we are interested in the change in Bitcoin price as the underlying changes.
You should actually treat your delta as Equity + Delta Total if you want to have less risk for your USD PnL.
⚠️ During the 30 minute settlement period we decay your Delta. See Delta decay during settlement for more details.
0.1334
The sum of position deltas excluding positions that expire at the nearest expiration, so it shows the delta that will remain once those positions have expired.
Calculated on the same Net Transaction Delta basis as delta_total, including delta decay during the settlement period.
0.1334
The account's equity in the selected currency: balance + futures (session UPL + RPL) + options mark value (plus any external/implied equity). Related: margin_balance excludes options mark value under standard margin.
2.6437733
Combined profit and loss of all futures and perpetual positions included in total_pl (total_pl - options_pl).
0
Session realized profit and loss for futures and perpetual positions (resets at daily settlement).
0
Session unrealized profit and loss for open futures and perpetual positions.
0
Minimum margin required to open or increase positions (includes margin for open orders). If initial margin usage exceeds 100%, available_funds is 0. When cross collateral is enabled, this aggregated value is calculated by converting the sum of each cross collateral currency's value to the given currency, using each cross collateral currency's index.
0.379882
Minimum margin required to keep positions open. If margin_balance falls below maintenance margin, positions are liquidated. When cross collateral is enabled, this aggregated value is calculated by converting the sum of each cross collateral currency's value to the given currency, using each cross collateral currency's index.
0.1334519
Sum of the deltas of all options positions. For inverse (coin-margined) options this is the Black-Scholes delta; for linear options it is the index-price-adjusted delta. Unlike account-level delta_total, the options mark value is not subtracted.
0
Sum of options position gammas (Black-Scholes).
0
Combined profit and loss of all options positions included in total_pl.
0
Session realized profit and loss for options positions (resets at daily settlement).
0
Session unrealized profit and loss for open options positions.
0
Sum of the thetas of all options positions. Theta is expressed per day; for options with less than one day left to expiry it is scaled down to the fraction of a day remaining.
0
Mark value of all open options positions in the selected currency. Under standard margin, margin_balance = equity - options_value.
0
Sum of options position vegas (Black-Scholes).
0
Maintenance margin calculated as if instruments expiring at the nearest expiration were excluded, so it shows the requirement that will remain once those instruments have expired. When cross collateral is enabled, this aggregated value is calculated by converting the sum of each cross collateral currency's value to the given currency, using each cross collateral currency's index.
1
Collateral available against margin requirements. Under standard margin (SM): equity - options_value (cash balance plus futures session UPL and RPL). Under portfolio margin (PM): equal to equity. When cross collateral is enabled, this aggregated value is calculated by converting the sum of each cross collateral currency's value to the given currency, using each cross collateral currency's index.
2.25
The account's balance reserved in active spot orders
0.3
Portion of the account balance that is locked and excluded from available withdrawal calculations.
0
The account's balance reserved for open buy option orders and option combo orders (the premium payable if they fill). Only non-zero on the cross_sm margin model; balance reserved by spot orders is reported separately in spot_reserve.
0.3
The account's fee balance (it can be used to pay for fees)
Fee group indicates the level of fee discounts applied to an account. Use extended: true to view this field. If the field is missing, the account is not assigned to any fee group. 📖 Related Support Article: Automatically applied volume based fee discounts
Map of position delta sums by price index (e.g. btc_usd), covering both futures and options positions.
These are raw position deltas: they are not price-adjusted for linear instruments and the options mark value is not subtracted.
They therefore do not add up to delta_total, which is calculated on the Net Transaction Delta basis described under delta_total.
Hide child attributes
Hide child attributes
The deposit address for the account (if available)
"14diAAyXL5UzhPTCKC998ch2GV7DMb7yDi"
Initial margin calculated as if instruments expiring at the nearest expiration were excluded, so it shows the requirement that will remain once those instruments have expired. When cross collateral is enabled, this aggregated value is calculated by converting the sum of each cross collateral currency's value to the given currency, using each cross collateral currency's index.
1
Close-out margin threshold in the selected currency, equal to 50% of maintenance_margin.
Because it sits below maintenance_margin, it marks a later and more severe stage than ordinary liquidation: when margin_balance falls to or below this level, close-out liquidation takes over.
Returned only when close-out margin is enabled on the platform.
0
Close-out margin calculated as if instruments expiring at the nearest expiration were excluded, i.e. 50% of projected_maintenance_margin.
Returned only when close-out margin is enabled on the platform.
0
true when portfolio margining is enabled for user
true
When true cross collateral is enabled for user
true
Name of user's currently enabled margin model
"segregated_sm"
Optional (only for users using cross margin). The account's total equity in all cross collateral currencies, expressed in USD
2.6437733
Optional (only for users using cross margin). The account's total initial margin in all cross collateral currencies, expressed in USD
0.379882
Optional (only for users using cross margin). The account's total maintenance margin in all cross collateral currencies, expressed in USD
0.1334519
Optional (only for users using cross margin). The account's total margin balance in all cross collateral currencies, expressed in USD
2.25
Optional (only for users using cross margin). The account's total delta total in all cross collateral currencies, expressed in USD
1.8
Returned object is described in separate document.
Optional field returned with value true when user has non block chain equity that is excluded from proof of reserve calculations
Fee structure for all currency pairs and instrument types related to the currency (available when parameter extended = true and user has any discounts). Keys are index names (e.g., "btc_usd"), values are objects with instrument types as keys (option, perpetual, future).
Hide child attributes
Hide child attributes
Hide child attributes
Hide child attributes
Hide child attributes
Hide child attributes
Hide child attributes
Hide child attributes
Fee calculation type. relative — taker/maker are unitless multipliers applied on top of the base instrument fee (e.g., 0.625 means the user pays 62.5% of the base fee). fixed — taker/maker are absolute fee rates expressed as a fraction of notional (e.g., 0.00035 means 0.035%, or 3.5 bps). Negative values indicate a rebate.
Taker fee. Unit depends on type: multiplier of the base fee when type = relative; fraction of notional when type = fixed.
Maker fee. Unit depends on type: multiplier of the base fee when type = relative; fraction of notional when type = fixed. Negative values indicate a maker rebate.
Block trade fee (if applicable)
Affiliate promotion fee (if greater than 0.0)
0
Which trading products are enabled or can be overwritten for the account
Whether the account receives notifications
false
The id that was sent in the request
Related topics
private/get_account_summaryJSON-RPC API ChangelogManaging Subaccountsprivate/get_lsp_usageRate LimitsWas this page helpful?