# Loan Offers

Use this endpoint to get a user's loan limit based on their credit score.

## Loan Offers

<mark style="color:green;">`POST`</mark> `{{BASE_URL}}/mfi/v1/borrowers/options`

Get user's loan limit

#### Headers

| Name                                            | Type   | Description                  |
| ----------------------------------------------- | ------ | ---------------------------- |
| Authorization<mark style="color:red;">\*</mark> | string | Generated from Auth endpoint |

#### Request Body

| Name                                         | Type   | Description                     |
| -------------------------------------------- | ------ | ------------------------------- |
| channel<mark style="color:red;">\*</mark>    | string | Client Name provided by Pezesha |
| identifier<mark style="color:red;">\*</mark> | string | Merchant ID                     |

{% tabs %}
{% tab title="200 Successful response" %}

```javascript
{
    "status": 200,
    "response_code": 0,
    "error": false,
    "message": "Merchant Decision Options",
    "data": {
        "amount": 10000,
        "rate": "0.50",
        "fee": 100,
        "duration": 7,
        "interest": 50
    }
}
```

{% endtab %}

{% tab title="202 HTTP 200: OK" %}

```javascript
{
  "error": true,
  "status": 200,
  "response_code": 0,
  "message": "Unable to get loan offers at this point"
}

```

{% endtab %}
{% endtabs %}

```javascript
{
    "identifier": "1154980",
    "channel": "Partner Name"
}
```
