Documentation

Learn ECURTIY

Everything you need to integrate and configure ECURTIY human verification.

Quick Start

Get up and running with ECURTIY in less than 5 minutes.

Start Here

Simple Integration

<!-- 1. Add the widget container -->
<div id="ecurtiy-widget"></div>

<!-- 2. Include the script -->
<script src="https://ecurtiy.com/widget/ecurtiy.js"
        data-site-key="YOUR_SITE_KEY"
        async defer>
</script>

<!-- 3. Handle the verification -->
<script>
  function onVerify(token) {
    // Send token to your server for validation
    fetch('/api/submit', {
      method: 'POST',
      body: JSON.stringify({ token })
    });
  }
</script>