Query Investment Products
Returns all available investment products.
Response Contentβ
| Name | Type | Description |
|---|---|---|
| id | String | Product ID |
| name | String | Product name |
| currency | String | Currency |
| type | String | Product type (e.g. Flex) |
| startDate | Long | Investment start date (Unix ms) |
| interestStartDate | Long | Interest accrual start date (Unix ms) |
| rates | Object[] | Interest rate tiers |
| compounding | Boolean | Whether the product compounds |
| autoRenewSupported | Boolean | Whether auto-renew is supported |
| dailyLimit | Double | Daily investment limit |
| minSize | Double | Minimum investment size |
| incrementalSize | Double | Investment step size |
example
GET
https://api.btse.com/spot/api/v3.3/invest/productsResponse
[
{
"id": "OPENETH00001",
"name": "ETH Flex Savings",
"currency": "ETH",
"type": "Flex",
"startDate": 1610685918000,
"interestStartDate": 1610719200000,
"rates": [
{
"days": 1,
"rate": 1.15
}
],
"compounding": true,
"autoRenewSupported": false,
"dailyLimit": 10,
"minSize": 1,
"incrementalSize": 1
}
]