riverty logo

Docs

Available Installment Plans

Returns the available installment plans for the specific product/basket valueReturns monthly installment amount, interest and fees. Typically used on a product page.

Path

POST /api/v3/lookup/installment-plans

Request Body

application/json

amount
required
number
Total order amount
currency
string
Enum:

EUR

NOK

SEK

DKK

CHF

Currency
countryCode
string
Enum:

NO

SE

FI

DK

DE

AT

CH

NL

BE

Country code

Responses

Successful Request

Request Example

    
        {
 "amount": 185,
 "currency": "EUR",
 "countryCode": "DE"
}
    

Response Example

    
        {
 "availableInstallmentPlans": [
  {
   "basketAmount": 185,
   "numberOfInstallments": 3,
   "installmentAmount": 61.67,
   "firstInstallmentAmount": 61.67,
   "lastInstallmentAmount": 61.66,
   "interestRate": 0,
   "effectiveInterestRate": 0,
   "effectiveAnnualPercentageRate": 0,
   "totalInterestAmount": 0,
   "startupFee": 0,
   "monthlyFee": 0,
   "totalAmount": 185,
   "installmentProfileNumber": 1
  },
  {
   "basketAmount": 185,
   "numberOfInstallments": 6,
   "installmentAmount": 30.84,
   "firstInstallmentAmount": 30.84,
   "lastInstallmentAmount": 30.8,
   "interestRate": 0,
   "effectiveInterestRate": 0,
   "effectiveAnnualPercentageRate": 0,
   "totalInterestAmount": 0,
   "startupFee": 0,
   "monthlyFee": 0,
   "totalAmount": 185,
   "installmentProfileNumber": 2
  },
  {
   "basketAmount": 185,
   "numberOfInstallments": 9,
   "installmentAmount": 20.56,
   "firstInstallmentAmount": 20.56,
   "lastInstallmentAmount": 20.52,
   "interestRate": 0,
   "effectiveInterestRate": 0,
   "effectiveAnnualPercentageRate": 0,
   "totalInterestAmount": 0,
   "startupFee": 0,
   "monthlyFee": 0,
   "totalAmount": 185,
   "installmentProfileNumber": 3
  }
 ]
}