Get Pay Trade History (USER_DATA)
- If startTime and endTime are not sent, the recent 90 days' data will be returned.
- The max interval between startTime and endTime is 90 days.
- Support for querying orders within the last 18 months.
Weight(UID): 3000
Query parameters
UTC timestamp in ms
UTC timestamp in ms
default 100, max 100
The value cannot be greater than 60000
UTC timestamp in ms
Signature
Response
Pay History
Example response
{
"code": "000000",
"message": "success",
"data": [
{
"orderType": "C2C",
"transactionId": "M_P_71505104267788288",
"transactionTime": 1610090460133,
"amount": "23.72469206",
"currency": "BNB",
"walletType": 1,
"payerInfo": {
"name": "Jack",
"type": "USER",
"binanceId": "12345678",
"accountId": "67736251"
},
"receiverInfo": {
"name": "Alan",
"type": "MERCHANT",
"email": "alan@test.com",
"binanceId": "34355667",
"accountId": "21326891",
"countryCode": "1",
"phoneNumber": "8057651210",
"mobileCode": "US"
}
}
]
}Changes
Changed in 3 of the 26 revisions of this API.27
- ○
added the required property
data/items/payerInfoto the response with the200statusresponse-required-property-added
- ○
added the required property
data/items/receiverInfoto the response with the200statusresponse-required-property-added
- ○
added the required property
data/items/walletTypeto the response with the200statusresponse-required-property-added
- ○
added the required property
data/items/walletTypesto the response with the200statusresponse-required-property-added
- ○
- ●
deleted the
queryrequest parameterendTimestamprequest-parameter-removed
- ●
deleted the
queryrequest parameterstartTimestamprequest-parameter-removed
- ○
added the new optional
queryrequest parameterendTimenew-optional-request-parameter
- ○
added the new optional
queryrequest parameterstartTimenew-optional-request-parameter
- ●
- ○
endpoint added
endpoint-added
- ○