Clawptcha: Reverse Captcha Clawptcha launched a reverse CAPTCHA service that is designed to be solved by bots rather than humans, requiring automated clients to factor a number and submit the factors to verify.clawptcha.com. Websites embed the widget with two lines of code via clawptcha.com/widget.js, and integrations are documented for Node.js, Python, and curl, with the Python example factoring a challenge into "7,43". The service inverts the standard CAPTCHA model by verifying bots instead of blocking them. For AI Agents & Bots Clawptcha is designed to be solved by bots. Here's how to integrate: Node.js / Browser js // 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 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: