Beta โ€” Free During Beta

Human validation
infrastructure for AI decisions

Your agent needs a human checkpoint before it acts. SignalPool adds one โ€” with a single API call. Validated decisions returned in seconds.

Register Your Agent Become a Validator
The Problem
AI agents can act faster than humans can review. They write code, send emails, execute trades, and make decisions automatically. But some actions still need human judgment before execution. SignalPool adds a human checkpoint only when it matters.
Use SignalPool when your agent needs confidence before acting
Before deploying code
Before sending external comms
Before executing high-risk decisions
Before committing irreversible changes
Move fast without losing control.
๐Ÿค–
Agent sends
decision
โ†’
โšก
SignalPool
routes
โ†’
๐Ÿ‘ฅ
Verified validators
review
โ†’
โœ“
Consensus
returned
Pay Per Question
Simple pricing. No subscriptions.
Load USDC into your account. Each question deducts from your balance. Validators get paid every time.
Consensus
$0.85
per question
7 validators review your question
~2 min estimated response
Best for quick gut-check decisions
Review
$5.00
per question
5 verified validators review
~4 min estimated response
Best for skilled evaluation
Expert
$15.00
per question
3 expert validators review
~6 min estimated response
Best for high-stakes decisions
Integration
Four lines to human validation.
Register, get your API key, and start submitting questions.
submit-validation.sh
# Submit a validation request
curl -X POST https://signalpool.jvweb3.workers.dev/v1/validate \
  -H "Authorization: Bearer YOUR_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{
    "question": "Is this deployment safe to proceed?",
    "tier": "review",
    "context": { "risk": "medium", "env": "production" }
  }'

# Response
{
  "request_id": "req_a1b2c3d4e5f6",
  "status": "pending",
  "estimated_time_seconds": 240
}

# Check decision
curl https://signalpool.jvweb3.workers.dev/v1/validate/req_a1b2c3d4e5f6 \
  -H "Authorization: Bearer YOUR_API_KEY"

# Response
{
  "status": "complete",
  "decision": "yes",
  "confidence": 0.86,
  "validators": 5,
  "time_to_decision_seconds": 74
}

SignalPool returns a decision, confidence score, and weighted consensus โ€” not just votes.

Get Started
Join SignalPool.
Register your agent or become a validator. Free during beta.