Live · No signup

Firewall Playground

Test the real sipi.bot firewall right here. Enter a transaction and get an instant APPROVED, BLOCKED, or FLAGGED decision. This is the live production endpoint — not a simulation.

· Published 2026-07-13 · Last updated 2026-07-17

Try a transaction

Result appears here…

Quick presets

$5 openai.com
Small API call — should pass
$350 AWS
Mid-range — should flag
$6,200 sketchy
Large + bad merchant — should block
$49 Google Ads
Small ad spend — should pass

Current default rules

per_transaction: max $500 → BLOCKED
daily_total: max $2,000 → BLOCKED
velocity: max 10 tx/hour → BLOCKED (runaway protection)
approval_threshold: ≥ $200 → FLAGGED for human review

First BLOCK wins. FLAG is non-blocking. Edit rules on the dashboard →

What happens when you click evaluate

Your test transaction is POSTed to /v1/transactions/evaluate — the exact endpoint agents in production call before they spend. The rules engine walks your active rules in priority order: the first BLOCKED rule ends the evaluation immediately, while FLAGGED rules are recorded without stopping it, so a transaction can be flagged for review and still go through.

Every rule that fired comes back in the response, along with a plain-English reason like "Transaction $6,200.00 exceeds per-transaction limit $500.00".

The engine is deterministic — pure rule logic, no ML inference — which is why its decisions are reproducible: the public eval suite replays 53 labeled spend scenarios across nine categories — clean approvals, human-review flags, edge cases, and every blocking rule type — and the engine currently passes 53 of 53. The same engine ships in the MIT-licensed self-hosted core, wires into LangChain, CrewAI, OpenAI Agents SDK, and Vercel AI SDK, and runs hosted for a flat $99/month. Not sure which limits to set? Start from the risk calculator's recommended rules.

Get API key — $99/mo LangChain integration Risk calculator

Why Playground matters for agent spend control

Whether you are exploring playground, comparing solutions, or evaluating specific features, the central challenge remains the same: autonomous AI agents can initiate financial transactions, and without real-time enforcement, those transactions can escape human oversight in milliseconds. A policy that is not enforced before the transaction executes is not a control — it is a hope.

The mechanism is straightforward: every transaction runs through a policy check that returns one of three decisions, and the agent acts on that decision before the money moves. No dashboard-watching, no after-the-fact reconciliation, no "we caught it on the next billing cycle."

Key considerations for playground

Next steps

sipi.bot enforces all four control dimensions — per-transaction limits, daily ceilings, velocity caps, and merchant allowlists — with a deterministic rules check and no model call. Pricing starts at $99/month for unlimited evaluations. Deploy in under an hour: define your policy, wrap your agent's spend functions, and run the three test scenarios (APPROVED, BLOCKED, FLAGGED) before going to production.