Skip to main content

Get Exchange Broker Account Info

info
  • Use exchange broker master account to query

API rate limit: 10 req / sec

HTTP Request

GET /v5/broker/account-info

Request Parameters

None

Response Parameters

ParameterTypeComments
subAcctQtystringThe qty of sub account has been created
maxSubAcctQtystringThe max limit of sub account can be created
baseFeeRebateRateObjectRebate percentage of the base fee
> spotstringRebate percentage of the base fee for spot, e.g., 10.00%
> derivativesstringRebate percentage of the base fee for derivatives, e.g., 10.00%
markupFeeRebateRateObjectRebate percentage of the mark up fee
> spotstringRebate percentage of the mark up fee for spot, e.g., 10.00%
> derivativesstringRebate percentage of the mark up fee for derivatives, e.g., 10.00%
tsstringSystem timestamp (ms)

Request Example

GET /v5/broker/account-info HTTP/1.1
Host: api-testnet.bybit.com
X-BAPI-SIGN: XXXXX
X-BAPI-API-KEY: XXXXX
X-BAPI-TIMESTAMP: 1701399431920
X-BAPI-RECV-WINDOW: 5000
Content-Type: application/json

Response Example

{
"retCode": 0,
"retMsg": "success",
"result": {
"subAcctQty": "2",
"maxSubAcctQty": "20",
"baseFeeRebateRate": {
"spot": "10.0%",
"derivatives": "10.0%"
},
"markupFeeRebateRate": {
"spot": "6.00%",
"derivatives": "9.00%"
},
"ts": "1701395633402"
},
"retExtInfo": {},
"time": 1701395633403
}