Get MMP State
HTTP Request
GET /unified/v3/private/account/mmp-state
Request Parameters
| Parameter | Required | Type | Comments |
|---|---|---|---|
| baseCoin | true | string | Base coin |
Response Parameters
| Parameter | Type | Comments |
|---|---|---|
| result | array | Object |
| > baseCoin | string | Base coin |
| > mmpEnabled | boolean | Whether the account is enabled mmp |
| > window | string | Time window (ms) |
| > frozenPeriod | string | Frozen period (ms) |
| > qtyLimit | string | Trade qty limit |
| > deltaLimit | string | Delta limit |
| > mmpFrozenUntil | string | Unfreeze timestamp (ms) |
| > mmpFrozen | boolean | Whether the mmp is triggered.
|
Request Example
POST /unified/v3/private/account/mmp-state HTTP/1.1
Host: api.bybit.com
X-BAPI-SIGN: XXXXX
X-BAPI-API-KEY: XXXXX
X-BAPI-TIMESTAMP: 1675842997277
X-BAPI-RECV-WINDOW: 5000
Content-Type: application/json
{
"baseCoin": "ETH"
}
Response Example
{
"retCode": 0,
"retMsg": "OK",
"result": {
"result": [
{
"baseCoin": "BTC",
"mmpEnabled": true,
"window": "5000",
"frozenPeriod": "100000",
"qtyLimit": "0.01",
"deltaLimit": "0.01",
"mmpFrozenUntil": "1675760625519",
"mmpFrozen": false
}
]
},
"retExtInfo": {},
"time": 1675843188984
}