latestOpenAPI 3.0.02026-08-102737124.3 KB

06b62340347d

Freelancer Credit Line

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.

post/v1/freelancers/anonymous_credit_line_installment_plans

Request body

interest_ratenumber float nullable

The interest rate applicable on the credit line. This rate is fixed for each partner depending on contractual and commercial agreements with Solaris.

loan_type'installment_plan' | 'bullet' nullable

Loan type which defines partner's product category

Example request

{
  "amount": {
    "currency": "EUR",
    "unit": "cents",
    "value": 100000
  },
  "interest_rate": 1
}

Response

Anonymous Installment Plans

Example response

{
  "installment_plans": [
    {
      "effective_interest_rate": 3,
      "interest_rate": 1,
      "monthly_installment": {
        "currency": "EUR",
        "unit": "cents",
        "value": 1000
      },
      "term": 3,
      "total": {
        "currency": "EUR",
        "unit": "cents",
        "value": 1000
      }
    }
  ]
}