List active loan transactions
curl --request GET \
--url https://lender.sandbox.lerian.net/api/v1/loan-accounts/{id}/transactions \
--header 'Authorization: Bearer <token>'package main
import (
"fmt"
"net/http"
"io"
)
func main() {
url := "https://lender.sandbox.lerian.net/api/v1/loan-accounts/{id}/transactions"
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-accounts/{id}/transactions', 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-accounts/{id}/transactions"
headers = {"Authorization": "Bearer <token>"}
response = requests.get(url, headers=headers)
print(response.text){
"data": [
{
"allocationLines": [
{
"dueDate": "2026-06-14",
"feesAmount": "1.50",
"fullyPaid": true,
"installmentNumber": 3,
"interestAmount": "12.34",
"penaltiesAmount": "0.00",
"principalAmount": "100.00",
"totalAmount": "113.84"
}
],
"createdAt": "2026-06-14T12:00:00Z",
"effectiveDate": "2026-06-14",
"overpaymentAmount": "0.00",
"paidAmount": "113.84",
"transactionId": "550e8400-e29b-41d4-a716-446655440010",
"transactionType": "repayment",
"originalTransactionId": "550e8400-e29b-41d4-a716-446655440012",
"requestId": "550e8400-e29b-41d4-a716-446655440011"
}
]
}{
"code": "ERR-0001",
"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 active loan transactions
Returns recorded repayment transactions for an active loan account. A malformed UUID yields 422, distinct from 404.
GET
/
api
/
v1
/
loan-accounts
/
{id}
/
transactions
List active loan transactions
curl --request GET \
--url https://lender.sandbox.lerian.net/api/v1/loan-accounts/{id}/transactions \
--header 'Authorization: Bearer <token>'package main
import (
"fmt"
"net/http"
"io"
)
func main() {
url := "https://lender.sandbox.lerian.net/api/v1/loan-accounts/{id}/transactions"
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-accounts/{id}/transactions', 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-accounts/{id}/transactions"
headers = {"Authorization": "Bearer <token>"}
response = requests.get(url, headers=headers)
print(response.text){
"data": [
{
"allocationLines": [
{
"dueDate": "2026-06-14",
"feesAmount": "1.50",
"fullyPaid": true,
"installmentNumber": 3,
"interestAmount": "12.34",
"penaltiesAmount": "0.00",
"principalAmount": "100.00",
"totalAmount": "113.84"
}
],
"createdAt": "2026-06-14T12:00:00Z",
"effectiveDate": "2026-06-14",
"overpaymentAmount": "0.00",
"paidAmount": "113.84",
"transactionId": "550e8400-e29b-41d4-a716-446655440010",
"transactionType": "repayment",
"originalTransactionId": "550e8400-e29b-41d4-a716-446655440012",
"requestId": "550e8400-e29b-41d4-a716-446655440011"
}
]
}{
"code": "ERR-0001",
"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"
}
}Authorizations
JWT bearer token issued by the identity provider.
Path Parameters
Loan account identifier (UUID).
Example:
"550e8400-e29b-41d4-a716-446655440000"
Response
OK
Recorded repayment transactions.
Show child attributes
Show child attributes
Was this page helpful?

