curl --request GET \
--url https://lender.sandbox.lerian.net/api/v1/loan-applications \
--header 'Authorization: Bearer <token>'package main
import (
"fmt"
"net/http"
"io"
)
func main() {
url := "https://lender.sandbox.lerian.net/api/v1/loan-applications"
req, _ := http.NewRequest("GET", url, nil)
req.Header.Add("Authorization", "Bearer <token>")
res, _ := http.DefaultClient.Do(req)
defer res.Body.Close()
body, _ := io.ReadAll(res.Body)
fmt.Println(string(body))
}const options = {method: 'GET', headers: {Authorization: 'Bearer <token>'}};
fetch('https://lender.sandbox.lerian.net/api/v1/loan-applications', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));import requests
url = "https://lender.sandbox.lerian.net/api/v1/loan-applications"
headers = {"Authorization": "Bearer <token>"}
response = requests.get(url, headers=headers)
print(response.text){
"data": [
{
"assignedOfficerId": "officer-xyz",
"borrowerId": "550e8400-e29b-41d4-a716-446655440002",
"createdAt": "2026-06-14T12:00:00Z",
"currency": "BRL",
"expectedDisbursementDate": "2026-06-14T12:00:00Z",
"id": "3fa85f64-5717-4562-b3fc-2c963f66afa6",
"loanProductVersionId": "550e8400-e29b-41d4-a716-446655440000",
"originationFront": "lender_direct",
"previewJurisdictionCode": "BR",
"previewProfileVersion": "1.0.0",
"previewScheduleSnapshotId": "6ba7b810-9dad-11d1-80b4-00c04fd430c8",
"requestedInstallments": 24,
"requestedInterestRate": "0.00000100",
"requestedPrincipalAmount": "50000.00",
"status": "pending_approval",
"updatedAt": "2026-06-14T12:00:00Z",
"approvalDecision": {
"approvedAmount": "48000.00",
"decidedBy": "<string>",
"decisionAt": "2026-06-14T12:00:00Z",
"id": "9f1c2d3e-4b5a-6789-abcd-ef0123456789",
"note": "<string>"
},
"disbursementEvent": {
"disbursedAt": "2026-06-14T12:00:00Z",
"grossRequestedAmount": "50000.00",
"id": "c3d4e5f6-a7b8-4901-acde-f01234567890",
"loanAccountId": "7c9e6679-7425-40de-944b-e07fc1f90ae7",
"netDeliveredAmount": "49500.00",
"profileVersion": "1.0.0"
},
"loanAccountId": "7c9e6679-7425-40de-944b-e07fc1f90ae7",
"rejectionDecision": {
"decidedBy": "<string>",
"decisionAt": "2026-06-14T12:00:00Z",
"id": "b2c3d4e5-f6a7-4890-9bcd-ef0123456789",
"reason": "<string>"
},
"withdrawalDecision": {
"decidedBy": "<string>",
"decisionAt": "2026-06-14T12:00:00Z",
"id": "b2c3d4e5-f6a7-4890-9bcd-ef0123456789",
"reason": "<string>"
}
}
]
}{
"code": "<string>",
"detail": "Property foo is required but is missing.",
"errors": [
{
"location": "<string>",
"message": "<string>",
"value": "<unknown>"
}
],
"instance": "https://example.com/error-log/abc123",
"status": 400,
"title": "Bad Request",
"type": "https://example.com/errors/example",
"upstream": {
"code": "E4001",
"message": "account not found at provider"
}
}{
"code": "<string>",
"detail": "Property foo is required but is missing.",
"errors": [
{
"location": "<string>",
"message": "<string>",
"value": "<unknown>"
}
],
"instance": "https://example.com/error-log/abc123",
"status": 400,
"title": "Bad Request",
"type": "https://example.com/errors/example",
"upstream": {
"code": "E4001",
"message": "account not found at provider"
}
}{
"code": "<string>",
"detail": "Property foo is required but is missing.",
"errors": [
{
"location": "<string>",
"message": "<string>",
"value": "<unknown>"
}
],
"instance": "https://example.com/error-log/abc123",
"status": 400,
"title": "Bad Request",
"type": "https://example.com/errors/example",
"upstream": {
"code": "E4001",
"message": "account not found at provider"
}
}{
"code": "<string>",
"detail": "Property foo is required but is missing.",
"errors": [
{
"location": "<string>",
"message": "<string>",
"value": "<unknown>"
}
],
"instance": "https://example.com/error-log/abc123",
"status": 400,
"title": "Bad Request",
"type": "https://example.com/errors/example",
"upstream": {
"code": "E4001",
"message": "account not found at provider"
}
}{
"code": "<string>",
"detail": "Property foo is required but is missing.",
"errors": [
{
"location": "<string>",
"message": "<string>",
"value": "<unknown>"
}
],
"instance": "https://example.com/error-log/abc123",
"status": 400,
"title": "Bad Request",
"type": "https://example.com/errors/example",
"upstream": {
"code": "E4001",
"message": "account not found at provider"
}
}List loan applications
Returns a page of loan applications for the caller’s tenant, newest first, optionally narrowed by status, loan product version, borrower, assigned officer or origination channel.
curl --request GET \
--url https://lender.sandbox.lerian.net/api/v1/loan-applications \
--header 'Authorization: Bearer <token>'package main
import (
"fmt"
"net/http"
"io"
)
func main() {
url := "https://lender.sandbox.lerian.net/api/v1/loan-applications"
req, _ := http.NewRequest("GET", url, nil)
req.Header.Add("Authorization", "Bearer <token>")
res, _ := http.DefaultClient.Do(req)
defer res.Body.Close()
body, _ := io.ReadAll(res.Body)
fmt.Println(string(body))
}const options = {method: 'GET', headers: {Authorization: 'Bearer <token>'}};
fetch('https://lender.sandbox.lerian.net/api/v1/loan-applications', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));import requests
url = "https://lender.sandbox.lerian.net/api/v1/loan-applications"
headers = {"Authorization": "Bearer <token>"}
response = requests.get(url, headers=headers)
print(response.text){
"data": [
{
"assignedOfficerId": "officer-xyz",
"borrowerId": "550e8400-e29b-41d4-a716-446655440002",
"createdAt": "2026-06-14T12:00:00Z",
"currency": "BRL",
"expectedDisbursementDate": "2026-06-14T12:00:00Z",
"id": "3fa85f64-5717-4562-b3fc-2c963f66afa6",
"loanProductVersionId": "550e8400-e29b-41d4-a716-446655440000",
"originationFront": "lender_direct",
"previewJurisdictionCode": "BR",
"previewProfileVersion": "1.0.0",
"previewScheduleSnapshotId": "6ba7b810-9dad-11d1-80b4-00c04fd430c8",
"requestedInstallments": 24,
"requestedInterestRate": "0.00000100",
"requestedPrincipalAmount": "50000.00",
"status": "pending_approval",
"updatedAt": "2026-06-14T12:00:00Z",
"approvalDecision": {
"approvedAmount": "48000.00",
"decidedBy": "<string>",
"decisionAt": "2026-06-14T12:00:00Z",
"id": "9f1c2d3e-4b5a-6789-abcd-ef0123456789",
"note": "<string>"
},
"disbursementEvent": {
"disbursedAt": "2026-06-14T12:00:00Z",
"grossRequestedAmount": "50000.00",
"id": "c3d4e5f6-a7b8-4901-acde-f01234567890",
"loanAccountId": "7c9e6679-7425-40de-944b-e07fc1f90ae7",
"netDeliveredAmount": "49500.00",
"profileVersion": "1.0.0"
},
"loanAccountId": "7c9e6679-7425-40de-944b-e07fc1f90ae7",
"rejectionDecision": {
"decidedBy": "<string>",
"decisionAt": "2026-06-14T12:00:00Z",
"id": "b2c3d4e5-f6a7-4890-9bcd-ef0123456789",
"reason": "<string>"
},
"withdrawalDecision": {
"decidedBy": "<string>",
"decisionAt": "2026-06-14T12:00:00Z",
"id": "b2c3d4e5-f6a7-4890-9bcd-ef0123456789",
"reason": "<string>"
}
}
]
}{
"code": "<string>",
"detail": "Property foo is required but is missing.",
"errors": [
{
"location": "<string>",
"message": "<string>",
"value": "<unknown>"
}
],
"instance": "https://example.com/error-log/abc123",
"status": 400,
"title": "Bad Request",
"type": "https://example.com/errors/example",
"upstream": {
"code": "E4001",
"message": "account not found at provider"
}
}{
"code": "<string>",
"detail": "Property foo is required but is missing.",
"errors": [
{
"location": "<string>",
"message": "<string>",
"value": "<unknown>"
}
],
"instance": "https://example.com/error-log/abc123",
"status": 400,
"title": "Bad Request",
"type": "https://example.com/errors/example",
"upstream": {
"code": "E4001",
"message": "account not found at provider"
}
}{
"code": "<string>",
"detail": "Property foo is required but is missing.",
"errors": [
{
"location": "<string>",
"message": "<string>",
"value": "<unknown>"
}
],
"instance": "https://example.com/error-log/abc123",
"status": 400,
"title": "Bad Request",
"type": "https://example.com/errors/example",
"upstream": {
"code": "E4001",
"message": "account not found at provider"
}
}{
"code": "<string>",
"detail": "Property foo is required but is missing.",
"errors": [
{
"location": "<string>",
"message": "<string>",
"value": "<unknown>"
}
],
"instance": "https://example.com/error-log/abc123",
"status": 400,
"title": "Bad Request",
"type": "https://example.com/errors/example",
"upstream": {
"code": "E4001",
"message": "account not found at provider"
}
}{
"code": "<string>",
"detail": "Property foo is required but is missing.",
"errors": [
{
"location": "<string>",
"message": "<string>",
"value": "<unknown>"
}
],
"instance": "https://example.com/error-log/abc123",
"status": 400,
"title": "Bad Request",
"type": "https://example.com/errors/example",
"upstream": {
"code": "E4001",
"message": "account not found at provider"
}
}Autorizaciones
JWT bearer token issued by the identity provider.
Parámetros de consulta
Narrow to one lifecycle status. Omit to include every status.
pending_approval, approved, rejected, withdrawn, disbursed Narrow to applications created against one loan product version.
"550e8400-e29b-41d4-a716-446655440000"
Narrow to one borrower. The borrower identifier is a UUID — the same identity the create route stored.
"550e8400-e29b-41d4-a716-446655440002"
Narrow to the officer the application is assigned to. Free-form authenticated identity subject, not necessarily a UUID, at most 255 characters; a system-originated application carries the empty officer.
255"officer-xyz"
Narrow to the trusted channel that created the application.
gateway_clt, lender_direct, unknown_legacy Page size.
1 <= x <= 100Page offset.
0 <= x <= 10000Respuesta
OK
Page of loan applications, newest first; always present, empty slice when none match.
Show child attributes
Show child attributes
¿Esta página le ayudó?

