Spam Filtering

reCAPTCHA v3 returns a score for each request without user friction. The score is based on interactions with your site and enables you to take an appropriate action for your site.
Score varies from 0.0 to 1.0 (1.0 is very likely a good interaction, 0.0 is very likely a bot). Based on the score, you can take variable action in the context of your site. By default, you can use a threshold of 0.5.

Step 1 — Add this script at the end of the head section of your page

Your reCAPTCHA must contain the same key as shown in the code snippet below. If you use a different sitekey, reCAPTCHA will not work.

<script src="https://www.google.com/recaptcha/api.js?render=6LchYK0UAAAAAMRflt6o0V_1imaH5KDnH5XVjWjB&onload=initRecaptcha&render=explicit"></script><script type="text/javascript">
  var initRecaptcha = function() {
    grecaptcha.ready(function() {
      grecaptcha.execute("6LchYK0UAAAAAMRflt6o0V_1imaH5KDnH5XVjWjB", {action: "homepage"}).then(function(token) {
        document.getElementById('recaptcha_token').value = token;
      });
    });
  }
</script>

Step 2 — Add the following hidden inputs to your form

<form accept-charset="UTF-8" action="https://app.form2chat.io/f/q1w2e3r4t5y6" method="POST">
  ...
  <input type="hidden" id="recaptcha_token" name="recaptcha_token"></input>
  <input type="hidden" name="action" value="validate_captcha"></input>
  ...
</form>

Step 3 — Make sure you've enabled anti-spam protection in your form

Make sure that Require recaptcha validation checkbox is enabled and appropriate Acceptable recaptcha score is set. Google's default recommendation is 0.5

Honeypot

This technique can be used in conjunction with our supported spam filtering methods. By including a hidden field in your form for spam bots to fill out, the submission will be ignored when a value is entered and submitted.
<form accept-charset="UTF-8" action="https://app.form2chat.io/f/q1w2e3r4t5y6" method="POST">
  ...
  <input type="hidden" name="_gotyou"></input>
  ...
</form>