latestOpenAPI 3.0.02026-08-102034118.0 KB
8f580eff2157
Consumer Loan
Create anonymous loan offer
Generates a non-binding anonymous loan offer for a customer based on their self-declared and unverified financial information.
post/v1/anonymous_consumer_loan_offers
Request body
Example request
{
"requested_loan_term": 24,
"requested_loan_amount": {
"value": 1000,
"unit": "cents",
"currency": "EUR"
},
"requested_interest_rate": 0.02,
"requested_emi": {
"value": 1000,
"unit": "cents",
"currency": "EUR"
},
"private_insurance_amount": {
"value": 1000,
"unit": "cents",
"currency": "EUR"
},
"net_income_amount": {
"value": 1000,
"unit": "cents",
"currency": "EUR"
},
"living_situation_amount": {
"value": 1000,
"unit": "cents",
"currency": "EUR"
},
"living_situation": "LIVING_IN_RENTED_HOUSE",
"existing_credit_repayment_excluding_mortgage": {
"value": 1000,
"unit": "cents",
"currency": "EUR"
},
"additional_costs": {
"value": 1000,
"unit": "cents",
"currency": "EUR"
}
}Response
Anonymous Offer
Example response
{
"offer": {
"monthly_installment": {
"value": 1000,
"unit": "cents",
"currency": "EUR"
},
"loan_term": 24,
"loan_amount": {
"value": 1000,
"unit": "cents",
"currency": "EUR"
},
"interest_rate": 0.02
},
"loan_decision": "OFFERED"
}