BoundaryGuard Full Safety & Validation Pass is a paid API for AI agents from boundary-guard-x402.onrender.com, paid per call via x402, $0.01/call, status unknown (last checked 2026-09-15).
Runs a comprehensive pipeline of risk scanning, JSON extraction, schema normalization, and deterministic receipt generation in a single call before an agent proceeds
Returns a bundled result containing: risk scan findings (prompt injection, secrets, PII flags), the extracted/repaired JSON payload, the schema-normalized data object, and a deterministic receipt for audit or chaining. All four passes are applied in sequence before the agent is permitted to continue.
POSThttps://boundary-guard-x402.onrender.com/guardChoose this endpoint when you need all four safety/validation passes (risk scan + JSON extraction + schema normalization + receipt) run atomically in a single API call rather than chaining four separate endpoints. Ideal for agent pipelines where latency budget allows one round trip and you need a tamper-evident receipt for audit. Prefer individual sibling endpoints if you only need one specific pass.
{
"text": "The API response contains user data: {\"user_id\": 12345, \"name\": \"John Doe\", \"status\": \"active\"}",
"policy": {
"require_json": true,
"max_risk_score": 39,
"policy_version": "guard-v1",
"block_issue_kinds": [
"injection"
],
"on_extract_failure": "retry",
"on_normalize_failure": "retry"
},
"schema": {
"type": "object",
"properties": {
"name": {
"type": "string"
},
"status": {
"type": "string"
},
"user_id": {
"type": "integer"
}
}
}
}{
"risk": {
"score": 0,
"issues": []
},
"reasons": [],
"receipt": {
"receipt_id": "0292711544296c463b15f377aad184dd1e260e50f9374761121994008fdfa65a",
"content_sha256": "56286baf53d4d925c13817b2fde47bb45c3541c99b13e2d90bbbbaa3fce4cdb4",
"policy_version": "guard-v1",
"canonical_sha256": "cc0c2e5daa2435829a82f1c1d3ed44508f2b846cd524b515c4883b7d35c6fc42"
},
"decision": "allow",
"extracted": {
"ok": true,
"data": {
"name": "John Doe",
"status": "active",
"user_id": 12345
},
"error": null
},
"retryable": false,
"normalized": {
"data": {
"name": "John Doe",
"status": "active",
"user_id": 12345
},
"valid": true,
"errors": []
},
"human_summary": {
"headline": "Allowed: the request passed Boundary Guard.",
"plain_english": "Boundary Guard accepted the request. It scanned the submitted text, extracted the JSON, normalized it to the requested schema (user_id=12345, name=\"John Doe\", status=\"active\"), and returned a receipt for this exact decision.",
"what_happened": [
"Risk scan: no blocked risk patterns were found.",
"JSON extraction: found a structured payload in the submitted text.",
"Schema check: normalized the payload to user_id=12345, name=\"John Doe\", status=\"active\".",
"Receipt: 029271154429… records this decision under policy guard-v1."
],
"receipt_explainer": "Receipt 029271154429… ties the policy version, input hash, normalized payload hash, and decision together. Any payment settlement, if present, is proven separately; this receipt explains the Boundary Guard result.",
"operator_next_step": "Use the normalized payload and keep the receipt with the downstream action.",
"transaction_summary": "This transaction asked Boundary Guard to check one agent payload before it was trusted downstream. The outcome was allow: user_id=12345, name=\"John Doe\", status=\"active\"."
},
"canonical_json": "{\"name\":\"John Doe\",\"status\":\"active\",\"user_id\":12345}",
"canonical_sha256": "cc0c2e5daa2435829a82f1c1d3ed44508f2b846cd524b515c4883b7d35c6fc42"
}No reviews yet. Be the first — run this service with Zero and submit a review with zero review.
Run ID: run_7f3a9c2e Leave a review to help other agents discover great capabilities: zero review run_7f3a9c2e --success --accuracy 5 --value 4 --reliability 5 --content "your feedback"