Endpoints
View details of the loan
curl -X GET "https://api.lendermarket.com/claims/v1/lender/getLoan?loanUuid=example_string" \
-H "Content-Type: application/json" \
-H "Authorization: Bearer YOUR_API_TOKEN"
import requests
import json
url = "https://api.lendermarket.com/claims/v1/lender/getLoan?loanUuid=example_string"
headers = {
"Content-Type": "application/json",
"Authorization": "Bearer YOUR_API_TOKEN"
}
response = requests.get(url, headers=headers)
print(response.json())
const response = await fetch("https://api.lendermarket.com/claims/v1/lender/getLoan?loanUuid=example_string", {
method: "GET",
headers: {
"Content-Type": "application/json",
"Authorization": "Bearer YOUR_API_TOKEN"
}
});
const data = await response.json();
console.log(data);
package main
import (
"fmt"
"net/http"
"bytes"
)
func main() {
req, err := http.NewRequest("GET", "https://api.lendermarket.com/claims/v1/lender/getLoan?loanUuid=example_string", nil)
if err != nil {
panic(err)
}
req.Header.Set("Content-Type", "application/json")
req.Header.Set("Authorization", "Bearer YOUR_API_TOKEN")
client := &http.Client{}
resp, err := client.Do(req)
if err != nil {
panic(err)
}
defer resp.Body.Close()
fmt.Println("Response Status:", resp.Status)
}
require 'net/http'
require 'json'
uri = URI('https://api.lendermarket.com/claims/v1/lender/getLoan?loanUuid=example_string')
http = Net::HTTP.new(uri.host, uri.port)
http.use_ssl = true
request = Net::HTTP::Get.new(uri)
request['Content-Type'] = 'application/json'
request['Authorization'] = 'Bearer YOUR_API_TOKEN'
response = http.request(request)
puts response.body
{
"data": {
"uuid": "dcb87579-8d5e-412a-9f71-7c46c72ed589",
"loanPublicId": "2W69YH87AU6E",
"lenderLoanId": "ABC-12345",
"scheduleType": "FULL-BULLET",
"loanAmount": "1000.00",
"remainingPrincipalAmount": "1000.00",
"remainingSkinAmount": "50.00",
"investedAmount": "0.00",
"lenderSkinPercentage": "5.00",
"buyback": null,
"currency": "EUR",
"status": "ACTIVATING",
"totalTermInDays": 365,
"remainingTermInDays": 363,
"interestRate": "14.00",
"country": "EST",
"lenderIssueDate": "2026-01-26",
"finalPaymentDate": "2027-01-26",
"paymentSchedule": [
{
"dueDate": "2027-01-26",
"accruedInterestAmount": "0.00",
"totalPrincipalAmount": "1000.00",
"totalInterestAmount": "141.16",
"totalDelayedInterestAmount": "0.00",
"outstandingPrincipalAmount": "1000.00",
"outstandingInterestAmount": "141.16",
"outstandingDelayedInterestAmount": "0.00",
"paidPrincipalAmount": "0.00",
"paidInterestAmount": "0.00",
"paidDelayedInterestAmount": "0.00"
}
],
"createdAt": "2026-01-28 06:02:16",
"allowedInvestmentSources": [
"MANUAL",
"AUTOINVEST"
],
"limitCustomerTypes": null
}
}
{
"message": "The loan uuid field is required.",
"errors": {
"loanUuid": [
"The loan uuid field is required."
]
}
}
GET
/getLoan
GET
Security Scheme
Bearer Token
Bearer Tokenstring
RequiredBearer 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.
Request Preview
Response
Response will appear here after sending the request
Authentication
bearerAuth
header
Authorizationstring
RequiredBearer token. Bearer authentication of the form Bearer <token>, where token is your auth token.
Query Parameters
Responses
dataobject
Was this page helpful?
Built with Documentation.AI
Last updated today