Lending recommendation

This allows lenders to customise lending repayment terms based on customer's financial standing.

Offer Recommendation

Recommend loan offers based on customer affordability

POST https://api.akibadigital.com/v1/offer/recommendation

Request Body

NameTypeDescription

requested_amount*

Int

loan amount requested

customer_id*

String

loan_type

String

loan_interest*

Int

max_repyment_months*

Int

min_repayment_months*

Int

other_fees_total*

Int

{
    "requested": 35000,
    "recommendations": [
        {
            "offer_id": "29e42a6c-b22c-46ab-a09b-e144b446f6d1",
            "date_offer": "2021-11-02T18:01:23.000000Z",
            "offer_amount": 30204,
            "monthly_repayment": 9,
            "default_probability": 0.113,
            "discount_rate_month": 0,
            "total_fees": null,
        },
        {
            "offer_id": "08935b9b-7372-4e09-8984-1056a60f7dc8",
            "date_offer": "2021-11-02T18:01:24.000000Z",
            "offer_amount": 31204,
            "monthly_repayment": 10,
            "default_probability": 0.12,
            "discount_rate_month": 0,
            "total_fees": null,
            
        }
    ]
}

Last updated