v1

latestOpenAPI 3.1.02026-07-24180245513.9 KB
Loans

List loans

List and filter loans.

get/loans

Query parameters

limitinteger
starting_afterstring uuid

The ID of the object from which your list request will start. It is not included in the result.

sort_order'asc' | 'desc'

Order is based on attribute created_at. If asc, results are fetched in chronological order. If desc, results are fetched in reversed chronological order. Default order is desc.

start_datestring date

The creation date of the loan.

end_datestring date

The creation date of the loan.

status'approved' | 'ready_for_disbursement' | 'pending_disbursement' | 'active' | 'paused' | 'closed'

The status of the loan.

Response

200

Example response

{
  "records": [
    {
      "id": "23c782f4-c069-4bf5-a426-df3ef9b894fa",
      "object": "loan",
      "amount": 3000,
      "currency": "EUR",
      "credit_arrangement_id": "af648dd4-3c9d-404e-8b9f-dd94db88f24a",
      "cbs_source": "mambu",
      "cbs_account_type": "loan",
      "cbs_account_id": "322fd8b9-9a00-45b9-93c2-4e1be2945494",
      "disbursement_details": {
        "connected_account_id": "0959a2b4-dc68-4681-a223-c109af60bc20",
        "internal_account_id": "0959a2b4-dc68-4681-a223-c109af60bc20",
        "receiving_account_id": "553eb3db-5acb-48ce-954f-f58551df2de6"
      },
      "repayment_details": {
        "direct_debit": {
          "direct_debit_mandate_id": "fcee1c3e-1c16-44c7-a248-81784be8ed50"
        },
        "credit_transfer": {
          "receiving_account_id": "d1c80f6f-8ddd-4b49-9b7e-92d0b8bf88a1"
        }
      },
      "metadata": {
        "property_a": true,
        "property_b": "some label"
      },
      "created_at": "2026-02-02T15:03:31.052019Z"
    }
  ]
}