v1

latestOpenAPI 3.0.32026-07-2613529376.3 KB
Crypto Lending - Fixed

Get interest payments history

The endpoint retrieves the history of interest payments.

<Warning> Rate limit: 1000 requests/10 sec. </Warning> <Note> The API does not cache the response. </Note>
post/api/v4/main-account/smart/interest-payment-history

Request body

planIdstring

Invest plan identifier

tickerstring

Invest plan target currency's ticker

limitinteger

LIMIT is a special clause used to limit records a particular query can return.

offsetinteger

Use the OFFSET clause to return entries starting from a particular line.

requeststring required

Request signature

nonceinteger required

Unique request identifier

Example request

{
  "planId": "8e667b4a-0b71-4988-8af5-9474dbfaeb51",
  "ticker": "USDT",
  "limit": 100,
  "request": "{{request}}",
  "nonce": 1594297865000
}

Response

Successful response

offsetinteger
limitinteger

Example response

{
  "records": [
    {
      "planId": "1",
      "investmentId": "1232",
      "amount": "0.01",
      "ticker": "BTC",
      "timestamp": 1588345560
    }
  ]
}