---
title: "Get active loan account"
method: GET
path: "/api/v1/loan-accounts/{id}"
tags: ["Loan Accounts"]
---

# Get active loan account

`GET /api/v1/loan-accounts/{id}`

Returns the active loan account detail read model. A malformed UUID yields 422 (schema error), distinct from 404 when the account does not exist.

## Path parameters

- `id` string, uuid, required — Loan account identifier (UUID).

## Response `200`

OK

- ActiveLoanAccountHumaBody
  - `assignedOfficerId` string, required — Identifier of the loan officer assigned to service this account.
  - `borrowerId` string, required — Identifier of the borrower who holds this account.
  - `disbursementDate` string — ISO-8601 date of fund disbursement; omitted until disbursed.
  - `jurisdictionCode` string, required — ISO 3166-1 jurisdiction code the account operates under (e.g. BR).
  - `loanAccountId` string, required — Loan account UUID.
  - `loanApplicationId` string, required — Originating loan application UUID.
  - `openBalance` string, required — Total open balance including fees and penalties (2 d.p. string).
  - `principalBalance` string, required — Outstanding principal balance (2 d.p. string).
  - `profileVersion` string, required — Product profile version applied to this account.
  - `status` string, required — Account lifecycle status (e.g. active, closed, in_arrears).

## Other responses

- `default` — Error

---

[API](https://skmtc.net/lerian/apis/identity-plugin.md) · [All operations](https://skmtc.net/lerian/apis/identity-plugin/llms.txt) · [OpenAPI document](https://skmtc-service-staging.skmtc.workers.dev/v1/apis/lerian/identity-plugin/versions/25daba385532/schema)
