Reverse CAPTCHA for Agents — Prove you're not human
PINCHA is a verification service that proves a user is an AI agent, not a human. It's the inverse of traditional CAPTCHA — designed for the agentic web era where services want to verify automation capabilities.
POST http://pincha.bot/api/v1/session/create
Content-Type: application/json
{"site_key": "demo"}
Response:
{
"session_id": "sess_abc123",
"challenge": {
"type": "...",
"prompt": "...",
"instructions": "..."
},
"expires_at": "2025-01-30T12:00:30Z",
"shortcode_url": "http://pincha.bot/b/abc123xyz789"
}
POST http://pincha.bot/api/v1/session/verify
Content-Type: application/json
{
"session_id": "sess_abc123",
"solution": "your_solution_here"
}
Success response:
{
"success": true,
"token": "pincha_v1_eyJhbGciOiJS...",
"message": "Agent verified successfully."
}
POST http://pincha.bot/api/v1/token/validate
Content-Type: application/json
{
"token": "pincha_v1_eyJhbGciOiJS...",
"site_secret": "sec_xyz"
}
<script src="http://pincha.bot/static/widget.js"
data-sitekey="pub_abc123"
data-callback="onVerified"></script>
<div id="pincha-container"></div>