The runtime trust layer for production agents. Boundary Guard gives agents and operators a deterministic checkpoint before ingestion, memory writes, tool chaining, CRM enrichment, database persistence, or irreversible actions. Before your agent acts, run Boundary Guard.
Detect prompt injection, secret leakage, and PII-like strings before trust.
Extract valid JSON from prose, markdown, or malformed model output.
Normalize untrusted structured data into a stable schema contract.
Redact emails, phones, and secret-like tokens before logs, storage, or sharing.
Pull emails, phones, URLs, and domains from messy text or scraped content.
Split long text into deterministic overlapping chunks with hashes for RAG and ingestion.
Run the full boundary pass and return a deterministic Boundary Receipt.
Chunk long text, scrub sensitive values, and normalize fields before the first vector write or database insert.
Extract emails, phones, URLs, and domains from messy text or scraped pages before sales agents and CRMs touch the data.
Run Risk Scan or full Guard before tool calls, memory updates, or customer-facing automation so risky payloads stop early.
Every paid endpoint is priced at $0.01 / call so teams can afford to insert Boundary Guard into every critical handoff.
per call across all seven premium tools
Use /healthz for uptime and smoke tests
https://boundary-guard-x402.onrender.comhttps://boundary-guard.vercel.appPOST https://boundary-guard-x402.onrender.com/risk-scan POST https://boundary-guard-x402.onrender.com/json-extract POST https://boundary-guard-x402.onrender.com/schema-normalize POST https://boundary-guard-x402.onrender.com/pii-redact POST https://boundary-guard-x402.onrender.com/contact-extract POST https://boundary-guard-x402.onrender.com/text-chunk POST https://boundary-guard-x402.onrender.com/guard GET https://boundary-guard-x402.onrender.com/healthz
Use /docs for live Swagger exploration, /openapi.json for machine-readable schema discovery, /.well-known/x402 for an x402-native catalog summary, and the paid Render host for x402-protected production and marketplace discovery.
curl -sS https://boundary-guard.vercel.app/guard \
-H 'content-type: application/json' \
--data '{
"text": "payload: {\"count\": \"4\", \"active\": \"true\"}",
"schema": {
"type": "object",
"required": ["count", "active"],
"properties": {
"count": {"type": "integer"},
"active": {"type": "boolean"}
}
}
}'