Skip to main content

Query User Negative Balance Auto Exchange Record (USER_DATA)

API Description

Query user negative balance auto exchange record

HTTP Request

GET /papi/v1/portfolio/negative-balance-exchange-record

Request Weight

100

Request Parameters

NameTypeMandatoryDescription
startTimeLONGYES
endTimeLONGYES
recvWindowLONGNOThe value cannot be greater than 60000
timestampLONGYES

Note

  • Response in descending order
  • The max interval between startTime and endTime is 3 months.

Response Example

{
"total": 2,
"rows": [
{
"startTime": 1736263046841,
"endTime": 1736263248179,
"details": [
{
"asset": "ETH",
"negativeBalance": 18, //negative balance amount
"negativeMaxThreshold": 5 //the max negative balance threshold
}
]
},
{
"startTime": 1736184913252,
"endTime": 1736184965474,
"details": [
{
"asset": "BNB",
"negativeBalance": 1.10264488,
"negativeMaxThreshold": 0
}
]
}
]
}