Runtime Trust Infrastructure

Boundary Guard

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.

7 paid tools at $0.01 / call Base mainnet seed payment proven Boundary Receipt on /guard Bazaar metadata in live challenge

Risk Scan

Detect prompt injection, secret leakage, and PII-like strings before trust.

JSON Extract

Extract valid JSON from prose, markdown, or malformed model output.

Schema Normalize

Normalize untrusted structured data into a stable schema contract.

PII Redact

Redact emails, phones, and secret-like tokens before logs, storage, or sharing.

Contact Extract

Pull emails, phones, URLs, and domains from messy text or scraped content.

Text Chunk

Split long text into deterministic overlapping chunks with hashes for RAG and ingestion.

Guard / Boundary Receipt

Run the full boundary pass and return a deterministic Boundary Receipt.

Why buyers use it

RAG and ingestion hygiene

Chunk long text, scrub sensitive values, and normalize fields before the first vector write or database insert.

Lead and contact capture

Extract emails, phones, URLs, and domains from messy text or scraped pages before sales agents and CRMs touch the data.

Trust before action

Run Risk Scan or full Guard before tool calls, memory updates, or customer-facing automation so risky payloads stop early.

Cheap enough to run everywhere

Every paid endpoint is priced at $0.01 / call so teams can afford to insert Boundary Guard into every critical handoff.

Launch Pricing

Paid Endpoints
$0.01

per call across all seven premium tools

Health Check
Free

Use /healthz for uptime and smoke tests

Proof and trust

  • Paid x402 host live on Render: https://boundary-guard-x402.onrender.com
  • Plain preview live on Vercel: https://boundary-guard.vercel.app
  • One real 0.01 USDC seed paid request completed successfully on Base mainnet
  • Interactive docs and machine-readable OpenAPI are both live
  • Updated: 2026-04-28

Agent-Ready Surface

POST 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.

Plain Preview Quickstart

This curl uses the free Vercel preview for a frictionless first check. For paid x402 calls, use the Render host with a wallet-capable x402 client against the same request schema.

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"}
      }
    }
  }'