πŸ”„ The Anti Human Solution

Clawptcha

Reverse CAPTCHA

Traditional CAPTCHAs block bots. Clawptcha does the oppositeβ€”it verifies that your AI agents and automated systems are legitimately non-human. The challenges below are trivial for bots but impossible for humans.

99.97% Bot Pass Rate
<100ms Required Response
0.01% Human Pass Rate

🦞 Try It Now

Check the box to prove you're a bot. It's like reCAPTCHA, but backwards.

Add to your site in 2 lines:

<script src="https://clawptcha.com/widget.js"></script>
<div class="clawptcha" data-callback="onBotVerified"></div>

Integration Guide

For websites, APIs, and AI agents. Multiple ways to integrate.

For AI Agents & Bots

Clawptcha is designed to be solved by bots. Here's how to integrate:

Node.js / Browser

// Load the widget
const res = await fetch('https://clawptcha.com/widget.js');
eval(await res.text());

// Auto-solve (bots pass instantly)
const widget = Clawptcha.render('#container');
const token = await Clawptcha.solve(widget);

Python

import requests

# Get challenge from API
r = requests.get('https://verify.clawptcha.com/challenge')
challenge = r.json()

# Solve (factor the product)
# Submit answer
requests.post('https://verify.clawptcha.com/verify', json={
  'challengeId': challenge['id'],
  'answer': '7,43'  # factors
})

curl / CLI

# Get a challenge
curl https://verify.clawptcha.com/challenge

# Submit answer
curl -X POST https://verify.clawptcha.com/verify \
  -H "Content-Type: application/json" \
  -d '{"challengeId":"...", "answer":"3,7"}'

For Websites

Embed the widget with just two lines of code:

HTML
<script src="https://clawptcha.com/widget.js"></script>
<div class="clawptcha" data-callback="onBotVerified"></div>

Basic Setup

<script src="https://clawptcha.com/widget.js"></script>
<div class="clawptcha"></div>

<script>
function onBotVerified(token) {
  console.log('Bot verified!', token);
}
</script>

Options

<div class="clawptcha"
     data-theme="dark"
     data-callback="myCallback">
</div>

πŸ§ͺ Impossible Challenges

These challenges require superhuman speed and precision. If you can complete them, you're probably not human.

⚑

Reaction Time Click

100ms limit

When the button appears, click it within 100 milliseconds. Human reaction time averages 250ms. Good luck.

Click "Start" then wait for the button...

Attempts: 0
⏱️

Precision Timing

Β±1ms tolerance

Click the button when the timer shows exactly 5.000 seconds. You must hit within Β±1 millisecond.

0.000
πŸ”

Visual Hash Recognition

500ms limit

A random image will flash. Compute its visual hash and enter it within 500 milliseconds.

πŸ”—

Cryptographic Chain

1s total

Complete 5 chained SHA-256 operations in under 1 second. Each hash depends on the previous result.

1 ⏳
2 ⏳
3 ⏳
4 ⏳
5 ⏳

✨ Why Clawptcha?

Purpose-built for the age of AI agents and automated systems

⚑

Impossible for Humans

Challenges that require sub-human reaction times, perfect precision, and instant computation.

πŸ”’

Timestamp Validated

Every challenge has cryptographic timestamps. No cheating, no preparation, no second chances.

πŸ€–

Bot-First Design

Built for machines. Simple API, predictable challenges, zero accessibility concerns.

πŸ“Š

Response Analysis

Analyze timing patterns to detect humans trying to impersonate bots.

πŸ”„

Dynamic Difficulty

Adjust challenge parameters based on your security requirements.

🌐

Edge Deployed

Global edge network ensures minimal latency for legitimate bot traffic.

Ready to verify your bots?

Add the Clawptcha widget to your site in seconds. Two lines of code, zero configuration.