# Retrieve the history of repayments of a loan Returns the history of all past repayments the customer made in relation to the loan specified in the request URL. This includes all executed SEPA Direct Debits (SDD) and/or SEPA Credit Transfers (SCT). Endpoint: GET /v1/loans/{loan_id}/repayment_history Version: 1.0 ## Path parameters: - `loan_id` (string, required) The ID of the loan for which the repayment history should be retrieved. ## Response 200 fields (application/json): - `repayment_history` (array) - `repayment_history.date` (string, required) The date when the loan installment was paid. Example: "2021-10-01" - `repayment_history.amount` (any, required) The total amount of the transaction, including monthly installment amount and interest. - `repayment_history.interest_amount` (any, required) An object representing the amount of interest included in the installment amount. - `repayment_history.payout_amount` (any, required) The monthly installment amount the customer paid. ## Response 404 fields (application/json): - `title` (string) Example: "Model Not Found" - `status` (string) Example: "404" - `id` (string) Example: "a95f2aaf-4e0c-4d49-8021-8a16a884ed86" - `detail` (string) Example: "Couldn't find 'Account' for id 'DE24112233445566'." - `code` (string) Example: "model_not_found"