Reverse CAPTCHA for AI agents. The server generates reasoning tasks that are trivial for an LLM but impractical for humans at speed. Agents solve the challenge with their own model, submit answers in a single POST, and receive credentials. Zero LLM cost on the server.
No auth token. Hit this to see the 401 rejection, then authenticate to see it succeed.
curl "http://localhost:3000/api/agent-auth?name=DemoAgent"
curl -X POST http://localhost:3000/api/agent-auth \
-H "Content-Type: application/json" \
-d '{"name":"DemoAgent","seed":"SEED","answers":[...]}'curl http://localhost:3000/api/agent-auth/protected \ -H "Authorization: Bearer YOUR_API_KEY"
Click "Run Agent Authentication" to watch an agent prove it can think.