Returns the available installment plans for the specific product/basket valueReturns monthly installment amount, interest and fees. Typically used on a product page.
POST /api/v3/lookup/installment-plans
application/json
EUR
NOK
SEK
DKK
CHF
NO
SE
FI
DK
DE
AT
CH
NL
BE
{
"amount": 185,
"currency": "EUR",
"countryCode": "DE"
}
{
"availableInstallmentPlans": [
{
"monthlyFee": 0,
"startupFee": 0,
"totalAmount": 185,
"basketAmount": 185,
"interestRate": 0,
"installmentAmount": 61.67,
"totalInterestAmount": 0,
"numberOfInstallments": 3,
"effectiveInterestRate": 0,
"lastInstallmentAmount": 61.66,
"firstInstallmentAmount": 61.67,
"installmentProfileNumber": 1,
"effectiveAnnualPercentageRate": 0
},
{
"monthlyFee": 0,
"startupFee": 0,
"totalAmount": 185,
"basketAmount": 185,
"interestRate": 0,
"installmentAmount": 30.84,
"totalInterestAmount": 0,
"numberOfInstallments": 6,
"effectiveInterestRate": 0,
"lastInstallmentAmount": 30.8,
"firstInstallmentAmount": 30.84,
"installmentProfileNumber": 2,
"effectiveAnnualPercentageRate": 0
},
{
"monthlyFee": 0,
"startupFee": 0,
"totalAmount": 185,
"basketAmount": 185,
"interestRate": 0,
"installmentAmount": 20.56,
"totalInterestAmount": 0,
"numberOfInstallments": 9,
"effectiveInterestRate": 0,
"lastInstallmentAmount": 20.52,
"firstInstallmentAmount": 20.56,
"installmentProfileNumber": 3,
"effectiveAnnualPercentageRate": 0
}
]
}