Skip to main content

Extra Bonus List(USER_DATA)

API Description#

Extra Bonus List

HTTP Request#

GET /sapi/v1/mining/payment/other

Request Weight#

5

Request Parameters#

NameTypeMandatoryDescriptionExample
algoSTRINGYESTransfer algorithm(sha256)sha256
userNameSTRINGYESMining Accounttest
coinSTRINGNOCoin Name
startDateLongNOSearch date, millisecond timestamp, while empty query all
endDateLongNOSearch date, millisecond timestamp, while empty query all
pageIndexINTEGERNOPage number, empty default first page, starting from 1
pageSizeINTEGERNONumber of pages, minimum 10, maximum 200
recvWindowLONGNO
timestampLONGYES

Response Example#

{  "code": 0,  "msg": "",  "data": {    "otherProfits": [      {        "time": 1607443200000,      // Mining date        "coinName": "BTC",    // Coin Name        "type": 4,            // 1: Merged Mining, 2: Activity Bonus, 3:Rebate 4:Smart Pool 6:Income Transfer 7:Pool Savings        "profitAmount": 0.0011859,  //Amount        "status": 2         //Status:0:Unpaid, 1:Paying  2:Paid      }    ],    "totalNum": 3,          // Total Rows    "pageSize": 20          // Rows per page  }}