Instinctive Network

Integrate the game CAPTCHA into your own site

Embed Instinctive Network’s game-based CAPTCHA, observe live behavioral telemetry, and receive a final Human/Bot decision that you can use to gate signup, checkout, login, or high-risk actions.

Quick start

1. Add a mount point to your page.
2. Load the CAPTCHA loader script.
3. Listen for the final result and allow only verified humans to continue.

Copy-paste example

<div id="my-captcha"></div>

<script>
  window.DefinitiveCaptchaConfig = {
    mount: '#my-captcha',
    apiBase: 'https://bpm5hq1qra.execute-api.us-east-1.amazonaws.com',
    onVerified(_token, payload) {
      console.log('Human verified', payload);
      // continue form submit / login / checkout
    },
    onFailed(payload) {
      console.log('Bot or failed verification', payload);
      // retry or block action
    }
  };
</script>
<script src="https://d2rs41qb2v2wff.cloudfront.net/captcha-loader.js?v=enterprise" async defer></script>

Minimal snippet

<div id="my-captcha"></div>
<script>
  window.DefinitiveCaptchaConfig = {
    mount: '#my-captcha',
    apiBase: 'https://bpm5hq1qra.execute-api.us-east-1.amazonaws.com',
    onVerified() { window.captchaPassed = true; },
    onFailed() { window.captchaPassed = false; }
  };
</script>
<script src="https://d2rs41qb2v2wff.cloudfront.net/captcha-loader.js?v=enterprise" async defer></script>

Event API

  • captcha:ready — widget loaded and challenge selected
  • captcha:telemetry — live metrics like latency, smoothness, entropy, coupling
  • captcha:result — final decision and analysis payload

What you can do with it

  • block bots before signup or login
  • gate checkouts, redemptions, or high-value actions
  • inspect behavior metrics in real time
  • log the final analysis payload server-side for auditability