# Calculate anonymous installment plans for a given amount Generates an anonymous credit line installment plan for a specific amount, including the monthly installment amount, the loan duration, and the applicable interest rates, allowing potential customers to receive an initial offer before applying for a credit line. Endpoint: POST /v1/freelancers/anonymous_credit_line_installment_plans Version: 1.0 ## Request fields (application/json): - `amount` (object, required) Example: {"currency":"EUR","unit":"cents","value":100000} - `amount.value` (integer, required) The amount value Example: 100000 - `amount.currency` (string, required) The currency of the given value Example: "EUR" - `amount.unit` (string, required) The unit of the given value Enum: "cents" - `interest_rate` (number,null) The interest rate applicable on the credit line. This rate is fixed for each partner depending on contractual and commercial agreements with Solaris. Example: 1 - `loan_type` (string,null) Loan type which defines partner's product category Enum: "installment_plan", "bullet" ## Response 200 fields (application/json): - `installment_plans` (array, required) - `installment_plans.term` (integer, required) The duration of the installment loan. Example: 3 - `installment_plans.monthly_installment` (object, required) The monthly installment amount. 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 due. Example: {"currency":"EUR","unit":"cents","value":1000} - `installment_plans.interest_rate` (number, required) The interest rate applicable on the credit line. This rate is fixed for each partner depending on contractual and commercial agreements with Solaris. Example: 1 - `installment_plans.effective_interest_rate` (number, required) The effective interest rate on the credit line charged monthly. Example: 3 ## 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." ## Response 403 fields (application/json): - `code` (string) Example: "unauthorized_action" - `detail` (string) Example: "Unauthorized action is not allowed." - `id` (string) Example: "a95f2aaf-4e0c-4d49-8021-8a16a884ed86" - `status` (string) Example: "403" - `title` (string) Example: "Unauthorized Action" ## Response 404 fields (application/json): - `code` (string) Example: "model_not_found" - `detail` (string) Example: "Couldn't find 'Account' for id 'DE24112233445566'." - `id` (string) Example: "a95f2aaf-4e0c-4d49-8021-8a16a884ed86" - `status` (string) Example: "404" - `title` (string) Example: "Model Not Found"