System Operational
|v1.0 — Human-in-the-Loop Protocol
AUTHORIZATION PROTOCOL

Your AI agent
needs a human
to proceed.

Intercept high-risk actions before execution. One API call pauses your agent and routes the decision to a human approver via email. Resume only on explicit sign-off.

Compatible with

OpenClawSKILLLangChainAutoGPTPythonNode.js
INPUT — agent.js
OUTPUT — decision
// Agent intercept point
const veto = await fetch(
  "https://vetoapi.com/api/v1/request",
  { method: "POST",
    body: JSON.stringify({
      api_key: "veto_live_xxx",
      user_email: "cto@company.com",
      action_title: "Deploy to prod"
    })
  }
);

// Poll until decision
while (status === "pending") {
  await sleep(5000);
  status = await poll(veto.request_id);
}

if (status === "approved") {
  deploy(); // ✓ authorized
}
AUTHORIZATION REQUEST
Deploy to prod
Requested by autonomous agent · pending
APPROVE
REJECT
APPROVED — agent.proceed()

Pricing

No hidden fees. No contracts.
Hobby
$0/mo
100 veto requests / mo
Standard email delivery
Community support
Start for Free
RECOMMENDED
Pro
$19/mo
3,000 veto requests / mo
Custom webhook retries
Remove Veto branding