billdoctor.org Open in urlscan Pro
2606:4700:10::ac43:590  Public Scan

Submitted URL: https://billdoctor.org/
Effective URL: https://billdoctor.org/personal-loans?utm_source=organic
Submission: On January 16 via manual from PT — Scanned from DE

Form analysis 1 forms found in the DOM

POST /personal-loans/submit-borrow-amount

<form class="form form--personal-loans max-w-2xl sm:mx-auto sm:w-5/6" x-data="PersonalLoansForm()" x-on:submit.prevent="validateForm" data-spec="personal-loans-form" action="/personal-loans/submit-borrow-amount" accept-charset="UTF-8" method="post"
  novalidate="true"><input type="hidden" name="authenticity_token" value="q5YifQPJZPyyIAsWR347Q488YJmPMK2jW87ooCTZn63kos6cKuaxnJnzGAUGBzFCv-XQyw55ZPe23DjtwGja2w" autocomplete="off">
  <input type="hidden" name="sub_source" value="personal_loans">
  <input type="hidden" name="state_site" value="">
  <div>
    <div class="form__field sm:mx-6 sm:mb-8" x-data="PersonalLoansSlider">
      <label for="requested_loan_amount" class="form__label text-sm sm:text-xl sm:my-2">How much would you like to borrow?</label>
      <div class="font-medium mt-1 text-lg text-blue-500 text-center sm:text-4xl" x-text="format(loanAmount)">$1,000</div>
      <div class="sm:mt-4">
        <input type="range" name="requested_loan_amount" id="requested_loan_amount" min="1000" max="50000" step="1000" value="1000" class="range-slider loan-slider w-full" required="" x-model.number="loanAmount" data-js="range-slider"
          style="--value:1000; --min:1000; --max:50000;">
      </div>
      <div class="columns-2 font-medium text-xs sm:text-lg">
        <div class="text-left">$1K</div>
        <div class="text-right">$50K+</div>
      </div>
    </div>
    <div class="form__field-error w-full" x-text="errors.requested_loan_amount" x-show="errors.requested_loan_amount.length" style="display: none;"></div>
    <fieldset class="form__fieldset mt-2.5 sm:mt-6">
      <div class="flex sm:border-t sm:mx-6">
        <legend class="form__legend mt-4 text-sm sm:font-semibold sm:mt-8 sm:text-xl"> Estimate your credit</legend>
        <button type="button" class="pl-2 text-slate-300 text-sm" x-ref="estimate-credit-toggle">
          <i class="fa fa-info-circle fa-solid mt-3 sm:mt-6" aria-hidden="true"></i>
        </button>
      </div>
      <input type="hidden" name="credit_score" required="">
      <div class="flex flex-col gap-2.5 mt-3 sm:mx-6 sm:mt-4">
        <div class="score" :class="{ 'score--selected': data.credit_score === 'excellent' }">
          <div class="form__field order-3 h-full w-full">
            <label for="excellent" class="flex items-center h-full w-full" x-on:click="data.credit_score = 'excellent'">
              <span class="sr-only">Excellent</span>
              <div class="flex">
                <div class="score__icon">
                  <i class="fa fa-square fa-solid" aria-hidden="true"></i>
                  <i class="fa fa-sack-dollar fa-regular" aria-hidden="true"></i>
                </div>
                <div class="score__meta">
                  <div class="score__label">Excellent</div>
                  <div class="score__range">(720 - 850)</div>
                </div>
              </div>
            </label>
            <input type="radio" name="credit_score" id="excellent" value="excellent" hidden="">
          </div>
        </div>
        <div class="score" :class="{ 'score--selected': data.credit_score === 'good' }">
          <div class="form__field h-full order-3 w-full">
            <label for="good" class="flex items-center h-full w-full" x-on:click="data.credit_score = 'good'">
              <span class="sr-only">Good</span>
              <div class="flex">
                <div class="score__icon">
                  <i class="fa fa-square fa-solid" aria-hidden="true"></i>
                  <i class="fa fa-coins fa-regular" aria-hidden="true"></i>
                </div>
                <div class="score__meta">
                  <div class="score__label">Good</div>
                  <div class="score__range">(680 - 719)</div>
                </div>
              </div>
            </label>
          </div>
          <input type="radio" name="credit_score" id="good" value="good" hidden="">
        </div>
        <div class="score" :class="{ 'score--selected': data.credit_score === 'fair' }">
          <div class="form__field h-full order-3 w-full">
            <label for="fair" class="flex items-center h-full w-full" x-on:click="data.credit_score = 'fair'">
              <span class="sr-only">Fair</span>
              <div class="flex">
                <div class="score__icon">
                  <i class="fa fa-square fa-solid" aria-hidden="true"></i>
                  <i class="fa fa-circle-dollar fa-regular" aria-hidden="true"></i>
                </div>
                <div class="score__meta">
                  <div class="score__label">Fair</div>
                  <div class="score__range">(640 - 679)</div>
                </div>
              </div>
            </label>
            <input type="radio" name="credit_score" id="fair" value="fair" hidden="">
          </div>
        </div>
        <div class="score" :class="{ 'score--selected': data.credit_score === 'poor' }">
          <div class="form__field h-full order-3 w-full">
            <label for="poor" class="flex items-center h-full w-full" x-on:click="data.credit_score = 'poor'">
              <span class="sr-only">Poor</span>
              <div class="flex">
                <div class="score__icon">
                  <i class="fa fa-square fa-solid" aria-hidden="true"></i>
                  <i class="fa fa-sack fa-regular" aria-hidden="true"></i>
                </div>
                <div class="score__meta">
                  <div class="score__label">Poor</div>
                  <div class="score__range">(0 - 639)</div>
                </div>
              </div>
            </label>
            <input type="radio" name="credit_score" id="poor" value="poor" hidden="">
          </div>
        </div>
        <div class="form__field-error" x-text="errors.credit_score" x-show="errors.credit_score.length" style="display: none;"></div>
      </div>
    </fieldset>
    <div class="mt-5 sm:mt-6 sm:mx-6">
      <button type="submit" class="form__submit sm:h-14 sm:text-lg uppercase">Continue</button>
    </div>
    <div class="flex justify-center space-x-6 mt-8 mx-6">
      <img class="h-12 w-24 sm:h-max sm:w-max" alt="Better Business Bureau Rating: A-" src="/assets/bbb-logo-1211d76f121f8f0450c551618dae8f0126c1e0d818fb2469b192d3d2ac5a67a9.png">
      <span class="italic self-center text-slate-500 text-sm sm:pl-0 sm:text-base">It's free and will not affect your credit score</span>
    </div>
  </div>
</form>

Text Content

About Resources Get Started


FAST & EASY PERSONAL LOANS

Check your options in minutes

How much would you like to borrow?
$1,000

$1K
$50K+

Estimate your credit
Excellent
Excellent
(720 - 850)
Good
Good
(680 - 719)
Fair
Fair
(640 - 679)
Poor
Poor
(0 - 639)

Continue
It's free and will not affect your credit score


HOW IT WORKS

Follow the simple steps below.

CHOOSE LOAN AMOUNT

Enter your desired personal loan amount and relevant information

SEE LOAN OPTIONS

Bill Doctor searches for the best personal loan options for you (completely
free!)

MAKE LOAN SELECTION

Select the loan option that best works for you and start saving (no markup from
us)


OUR PARTNER NETWORK




PERSONAL LOANS JUST GOT EASIER!

Personal loans to match your financial needs up to $250,000
Check your rates in minutes - fast and simple online process
Completely free and will not affect your credit score to apply


YOUR DATA IS SECURE

Your data is secure. We use 256-bit encryption - a higher security standard than
many banks



ESTIMATE YOUR CREDIT

Make your best estimate given what you know about your credit.
Close
Terms of Service Privacy Policy E-Sign Consent Credit Authorization Agreement CA
Privacy Notice Do Not Sell My Personal Information

© 2023 Bill Doctor.org. All rights reserved.


ADVERTISING DISCLOSURE

BillDoctor.org is an affiliate marketer. Our mission is to help you make better
financial decisions and improve your financial health. We aim to simplify the
discovery of savings opportunities tailored to your specific situation and
connect you with customized options to help you save on your monthly bills,
provided by our partners (Providers). Our services, tools, and content are
completely free for you. We are compensated in various ways, such as if you
click a link to a Provider's offer, visit a Provider's website, or choose to
purchase a Provider's product or service via BillDoctor. Any relationship that
you may form with a Provider is exclusively between you, as the consumer, and
the Provider. We do not warrant the products and/or services of the Providers. A
Provider's product or services presented on BillDoctor or a referral to a
Provider, including any affiliates, does not guarantee qualification or approval
for any particular product or service. BillDoctor does not present all
companies, websites, products, or services that may be available to you.


*MINIMUM PAYMENT EXAMPLE

The minimum payment example is based on a credit card for individuals with fair
credit, having an interest rate of 23% (rounded up to the nearest percentage
point) and assumes a payment of the interest and 1% of the principal balance.
Please note that, assuming the principal balance does not increase due to
additional charges, fees, and interest, the required minimum monthly payment
will decrease over time as additional minimum monthly payments are made and
reduce the total balance.


† MONTHLY SAVINGS ESTIMATION CALCULATIONS

Potential monthly savings is only an estimate based on monthly estimated savings
calculations. Savings estimates will vary depending on the amounts and type of
bills you provide. BillDoctor.org cannot guarantee how much you might save or
that you will save anything at all. Please refer to our explanation page to
understand how savings estimates are calculated. Actual savings, if any, will be
determined by the specific products or services obtained from the Providers.


KEY DISCLOSURES REGARDING LOAN TERMS AND CREDIT

Eligibility for such loan options from Billdoctor.org's Providers and the
Providers' network of lenders depends on the information you provide to the
Providers and/or their network of lenders and is not guaranteed. Loan terms
including amounts, and interest rates can vary based on your creditworthiness,
the Provider or their network of lenders, or other factors. Billdoctor.org does
not make any decision regarding your creditworthiness or review and evaluate you
for an extension of credit. Any credit decision is made by the Providers' and/or
their network of lenders. Thus, any notice of adverse action will be provided by
our Providers or their lending partners.