Extra Bonus List(USER_DATA)
API Description
Extra Bonus List
HTTP Request
GET /sapi/v1/mining/payment/other
Request Weight
5
Request Parameters
| Name | Type | Mandatory | Description | Example |
|---|---|---|---|---|
| algo | STRING | YES | Transfer algorithm(sha256) | sha256 |
| userName | STRING | YES | Mining Account | test |
| coin | STRING | NO | Coin Name | |
| startDate | Long | NO | Search date, millisecond timestamp, while empty query all | |
| endDate | Long | NO | Search date, millisecond timestamp, while empty query all | |
| pageIndex | INTEGER | NO | Page number, empty default first page, starting from 1 | |
| pageSize | INTEGER | NO | Number of pages, minimum 10, maximum 200 | |
| recvWindow | LONG | NO | ||
| timestamp | LONG | YES |
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
}
}