Loan Offers
Get a user's loan limit
Use this endpoint to get a user's loan limit based on their credit score.
Loan Offers
POST {{BASE_URL}}/mfi/v1/borrowers/options
Get user's loan limit
Headers
Name
Type
Description
Authorization*
string
Generated from Auth endpoint
Request Body
Name
Type
Description
channel*
string
Client Name provided by Pezesha
identifier*
string
Merchant ID
{
    "status": 200,
    "response_code": 0,
    "error": false,
    "message": "Merchant Decision Options",
    "data": {
        "amount": 10000,
        "rate": "0.50",
        "fee": 100,
        "duration": 7,
        "interest": 50
    }
}{
  "error": true,
  "status": 200,
  "response_code": 0,
  "message": "Unable to get loan offers at this point"
}
{
    "identifier": "1154980",
    "channel": "Partner Name"
}Last updated
Was this helpful?