EndpointsExtend Loan
Endpoints

Extend Loan

Extend the maturity dates of an existing loan’s installments on Lendermarket side.

Loans can be only extended if at the point of createLoans the extensions have been allowed. Trying to extend loan that cant be extended will give 422 Error - Maximum number allowed extensions reached,

curl -X POST "https://api.lendermarket.com/claims/v1/lender/createLoanExtension" \
  -H "Content-Type: application/json" \
  -H "Authorization: Bearer YOUR_API_TOKEN" \
  -d '{
  "loanUuid": "dcb87579-8d5e-412a-9f71-7c46c72ed589",
  "daysToExtend": 30
}'
{
  "data": {
    "uuid": "a49c2469-0537-48a1-aa0e-82ab32a157ac",
    "loanUuid": "dcb87579-8d5e-412a-9f71-7c46c72ed589",
    "extendedDays": 30,
    "paymentDate": "2026-01-28",
    "paymentSchedule": [
      {
        "dueDate": "2027-01-26",
        "accruedInterestAmount": "0.00",
        "totalPrincipalAmount": "0.00",
        "totalInterestAmount": "0.00",
        "totalDelayedInterestAmount": "0.00",
        "outstandingPrincipalAmount": "0.00",
        "outstandingInterestAmount": "0.00",
        "outstandingDelayedInterestAmount": "0.00",
        "paidPrincipalAmount": "0.00",
        "paidInterestAmount": "0.00",
        "paidDelayedInterestAmount": "0.00"
      },
      {
        "dueDate": "2027-02-25",
        "accruedInterestAmount": "0.00",
        "totalPrincipalAmount": "1000.00",
        "totalInterestAmount": "152.83",
        "totalDelayedInterestAmount": "0.00",
        "outstandingPrincipalAmount": "1000.00",
        "outstandingInterestAmount": "152.83",
        "outstandingDelayedInterestAmount": "0.00",
        "paidPrincipalAmount": "0.00",
        "paidInterestAmount": "0.00",
        "paidDelayedInterestAmount": "0.00"
      }
    ]
  }
}
POST
/createLoanExtension
POST
Security Scheme
Bearer Token
Bearer Tokenstring
Required

Bearer authentication of the form Bearer <token>, where token is your auth token.

Bearer authentication of the form Bearer <token>, where token is your auth token.
Content-Typestring
Required

The media type of the request body

Options: application/json
loanUuidstring
Required

Unique UUID of the loan in the LM system

daysToExtendinteger
Required

Total number of days that all remaining installments will be extended by

Min: 1
Request Preview
Response

Response will appear here after sending the request

Authentication

bearerAuth
header
Authorizationstring
Required

Bearer token. Bearer authentication of the form Bearer <token>, where token is your auth token.

Body

application/json
loanUuidstring
Required

Unique UUID of the loan in the LM system

daysToExtendinteger
Required

Total number of days that all remaining installments will be extended by

Responses

Was this page helpful?
Built with Documentation.AI

Last updated today