Skip to main content

Query Margin Loan Record(USER_DATA)

API Description#

Query margin loan record

HTTP Request#

GET /papi/v1/margin/marginLoan

Request Weight#

10

Request Parameters#

NameTypeMandatoryDescription
assetSTRINGYES
txIdLONGNOthe tranId in POST/papi/v1/marginLoan
startTimeLONGNO
endTimeLONGNO
currentLONGNOCurrently querying page. Start from 1. Default:1
sizeLONGNODefault:10 Max:100
archivedSTRINGNODefault: false. Set to true for archived data from 6 months ago
recvWindowLONGNOThe value cannot be greater than 60000
timestampLONGYES
  • txId or startTime must be sent. txId takes precedence.
  • Response in descending order
  • The max interval between startTime and endTime is 30 days.
  • If startTime and endTime not sent, return records of the last 7 days by default
  • Set archived to true to query data from 6 months ago

Response Example#

{  "rows": [    {        "txId": 12807067523,        "asset": "BNB",        "principal": "0.84624403",        "timestamp": 1555056425000,        "status": "CONFIRMED"   //one of PENDING (pending execution), CONFIRMED (successfully loaned), FAILED (execution failed, nothing happened to your account);    }  ],  "total": 1}