Documentation

Everything you need to integrate and operate CaptchaCore. If you are in a hurry, the quick start and a look at the verify response are enough.

What can we help with?

All chapters

The essentials in brief

Include the widget

<script src="https://src-eu.captchacore.eu/widget/captchacore-v2.min.js"
        data-service-url="https://api.captchacore.eu"
        data-site-key="cc_pub_…" async defer></script>

<form data-captchacore="interactive">
    <div data-captchacore-widget></div>
</form>

Check the token

POST https://api.captchacore.eu/api/v2/verify
X-CaptchaCore-Key: cc_sec_…

{ "token": "…", "form_type": "contact" }

// Antwort
{ "valid": true, "decision": "allow", … }

valid is false for step_up as well. Do not treat step_up like block — details.