# Calculate anonymous installment plans for a given amount Generates an anonymous credit line installment plan for a specific amount, allowing potential customers to receive an initial offer before applying for a credit line. Endpoint: POST /v1/anonymous_credit_line_installment_plans Version: 1.0 ## Request fields (application/json): - `amount` (object, required) The requested credit line amount for which the installment plan is created. Example: {"currency":"EUR","unit":"cents","value":1000} - `amount.value` (integer, required) The amount value Example: 1000 - `amount.currency` (string, required) The currency of the given value. Only EURO is currently supported. Example: "EUR" - `amount.unit` (string, required) The unit of the given value. Enum: "cents" - `loan_type` (string,null) The loan type, which defines your product category. Enum: "bullet", "installment_plan" - `interest_rate` (number,null) The interest rate to apply to the installment loan. Example: 0.11 - `bullet_loan_repayment_date` (string,null) The repayment date of the bullet loan. Example: "2022-02-22" ## Response 200 fields (application/json): - `installment_plans` (array, required) - `installment_plans.term` (integer, required) The number of months over which the installment loan will be repaid. Example: 6 - `installment_plans.monthly_installment` (object, required) The monthly installment amount the customer has to pay. Example: {"currency":"EUR","unit":"cents","value":1000} - `installment_plans.monthly_installment.value` (integer, required) The amount value Example: 1000 - `installment_plans.monthly_installment.currency` (string, required) The currency of the given value. Only EURO is currently supported. Example: "EUR" - `installment_plans.monthly_installment.unit` (string, required) The unit of the given value. Enum: "cents" - `installment_plans.total` (object, required) The total amount of the installment loan (principal + interest) the customer must repay. Example: {"currency":"EUR","unit":"cents","value":1000} - `installment_plans.interest_rate` (number, required) The interest rate to apply to the installment loan. Optional field only if there's a specific interest rate that should apply to the loan. Example: 0.11 - `installment_plans.effective_interest_rate` (number, required) The effective interest rate to apply to the installment loan. Example: 0.1157 ## Response 400 fields (application/json): - `code` (string) Example: "build_pagination_headers_failure" - `detail` (string) Example: "Cannot connect to database." - `id` (string) Example: "a95f2aaf-4e0c-4d49-8021-8a16a884ed86" - `status` (string) Example: "400" - `title` (string) Example: "Failed to build pagination headers."