Skip to main content

Query Investment Products

Returns all available investment products.

Response Content​

NameTypeDescription
idStringProduct ID
nameStringProduct name
currencyStringCurrency
typeStringProduct type (e.g. Flex)
startDateLongInvestment start date (Unix ms)
interestStartDateLongInterest accrual start date (Unix ms)
ratesObject[]Interest rate tiers
compoundingBooleanWhether the product compounds
autoRenewSupportedBooleanWhether auto-renew is supported
dailyLimitDoubleDaily investment limit
minSizeDoubleMinimum investment size
incrementalSizeDoubleInvestment step size
example
GEThttps://api.btse.com/spot/api/v3.3/invest/products

Response

[
{
"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
}
]