Query Investment History
Returns paginated investment transaction history.
Request Parametersβ
| Name | Type | Required | Description |
|---|---|---|---|
| pageNumber | Integer | No | Page number (1-based, default 1) |
| pageSize | Integer | No | Records per page (default 10, max 50) |
Response Contentβ
| Name | Type | Description |
|---|---|---|
| totalRows | Integer | Total records |
| pageNumber | Integer | Current page |
| pageSize | Integer | Records per page |
data:
| Name | Type | Description |
|---|---|---|
| txnTime | Long | Transaction time |
| name | String | Product name |
| currency | String | Currency |
| rate | Double | Interest rate |
| type | String | Product type |
| txnType | String | Transaction type (e.g. INVEST_SERVICE_TYPE_DEPOSIT) |
| amount | Double | Transaction amount |
| totalAmount | Double | Total invested amount |
| interestEarned | Double | Interest earned |
| duration | Long | Duration |
example
GET
https://api.btse.com/spot/api/v3.3/invest/historyResponse
{
"totalRows": 0,
"pageNumber": 1,
"pageSize": 10,
"data": []
}