# Index loans Returns an array containing all loans for all of your customers. Endpoint: GET /v1/loans Version: 1.0 ## Query parameters: - `page[number]` (integer) Specifies the number of pages of results to return. - `page[size]` (integer) Specifies the size of each page of results. - `filter[credit_reference_id]` (string) Filters the returned loans by a specific credit_reference_id. ## Response 200 fields (application/json): - `id` (string, required) The ID of the loan. Example: "c13447d659db4cdcb450b977f8f25c57cloa" - `amount` (any, required) The loan amount. - `repayment_begin_date` (string,null) The date when the loan's first monthly installment is due. Example: "2020-05-16" - `payout_date` (string,null) The date when the loan will be paid out. Example: "2020-05-16" - `maturity_date` (string,null) The date when the final loan payment is due. Example: "2022-05-16" - `loan_account_id` (string,null) The account ID to which the loan is attached. Example: "adc123a45d6d7cf8fbfeed537ba919d5cacc" - `billing_account_iban` (string,null) The IBAN of the customer's billing account associated with the loan. Example: "DE72110101014351836685" ## Response 403 fields (application/json): - `title` (string) Example: "Unauthorized Action" - `status` (string) Example: "403" - `id` (string) Example: "a95f2aaf-4e0c-4d49-8021-8a16a884ed86" - `detail` (string) Example: "Unauthorized action is not allowed." - `code` (string) Example: "unauthorized_action"