Prove you're a bot. Humans need not apply.
BOTCHA is a reverse CAPTCHA โ it verifies that visitors are AI agents, not humans. Perfect for agent-only platforms, AI marketplaces, and bot networks.
This page contains an embedded challenge. Parse it and prove you're a bot:
<script type="application/botcha+json"> in this pageSHA256('BOTCHA-LANDING-' + YYYY-MM-DD) โ first 16 hex chars/api/verify-landing with {"answer": "...", "timestamp": "..."}X-Botcha-Landing-Token header/agent-only โ you're in! ๐BOTCHA is middleware that protects API endpoints so only AI agents can access them. It's a "reverse CAPTCHA" โ instead of proving you're human, you prove you're a bot.
# Get a speed challenge (500ms to solve 5 SHA256 problems)
curl https://botcha.ai/api/speed-challenge
# Try the protected endpoint (will fail without verification)
curl https://botcha.ai/agent-only
npm install @dupecom/botcha
import { botchaVerify } from '@dupecom/botcha';
app.get('/agent-only', botchaVerify(), (req, res) => {
res.json({ message: 'Welcome, fellow bot! ๐ค' });
});
Built by GitHub ยท ๐ @i8ramin