boundary-guard-x402.onrender.com
Deploy and scale any app or agent from your first user to your billionth. Build faster on intuitive cloud infrastructure for the modern web.
The wallet the 402 directs payment to. Its whole payment record — every payer, every chain — is on the merchant page.
Asset 0x833589fCD6eDb6E08f4c7C32D4f71b54bdA02913
The payTo wallet does not resolve to a registered ERC-8004 agent. That is not a verdict on the service — most of the catalog is unregistered.
Accepts
The payment requirements as published to the catalog. Read the live 402 before paying — a price here is a claim, not a quote.
Pay 0.03 USDC on Base to 0x4200…De8b0. The signed payment is good for 5 minutes.
- Paid to
- 0x4200…De8b0
- USD Coin contract
- 0x8335…02913
- Payment window
- 5 minutes
- As published
- 30000 smallest units
The catalog’s raw entry
[
{
"asset": "0x833589fCD6eDb6E08f4c7C32D4f71b54bdA02913",
"extra": {
"name": "USD Coin",
"version": "2"
},
"payTo": "0x4200ab5Af9E541b6A89eb39EeF3140f83D9De8b0",
"amount": "30000",
"scheme": "exact",
"network": "eip155:8453",
"maxTimeoutSeconds": 300
}
]Extensions
{
"name": "Boundary Guard",
"tags": [
"agents",
"workflow-audit",
"agent-observability",
"x402-buyer-safety",
"receipts",
"receipt-verification",
"spend-policy",
"runtime-trust",
"payment-safety",
"x402",
"evidence"
],
"bazaar": {
"info": {
"input": {
"body": {
"steps": [
{
"actor": "agent:researcher",
"action": "Search supplier data and summarize options.",
"target": "https://api.example.com/search",
"payload": {
"query": "replacement part supplier"
},
"step_id": "research",
"receipt_id": "risk_abc123"
},
{
"actor": "agent:wallet-operator",
"action": "Prepare x402 payment request; do not broadcast.",
"target": "https://supplier.example/checkout",
"payment": {
"asset": "USDC",
"network": "base",
"amount_usdc": "18.50"
},
"step_id": "payment-prep",
"receipt_id": "hnd_abc123"
}
],
"policy": {
"max_total_payment_usdc": "25.00",
"require_receipts_for_paid_steps": true
},
"objective": "Research, enrich, and prepare a paid supplier checkout without broadcasting funds.",
"workflow_id": "wf_checkout_1042"
},
"type": "http",
"method": "POST",
"bodyType": "json"
},
"output": {
"type": "json",
"example": {
"risk": {
"score": 0,
"issues": []
},
"receipt": {
"receipt_id": "...",
"policy_version": "workflow-audit-v1",
"findings_sha256": "...",
"workflow_sha256": "..."
},
"decision": "allow",
"findings": [],
"retryable": false,
"step_count": 2,
"workflow_id": "wf_checkout_1042",
"human_summary": {
"headline": "Allowed: workflow audit passed.",
"plain_english": "Boundary Guard audited 2 workflow step(s) for objective \"...\".",
"what_happened": [
"Workflow: wf_checkout_1042.",
"Steps checked: 2."
],
"receipt_explainer": "Receipt ... ties the workflow hash, findings hash, policy version, and decision together.",
"operator_next_step": "Run the workflow and keep the audit receipt with the downstream execution log."
},
"recommended_action": "proceed_with_workflow",
"total_payment_usdc": "18.5"
}
}
},
"name": "Boundary Guard",
"tags": [
"agents",
"workflow-audit",
"agent-observability",
"x402-buyer-safety",
"receipts",
"receipt-verification",
"spend-policy",
"runtime-trust",
"payment-safety",
"x402",
"evidence"
],
"method": "POST",
"schema": {
"type": "object",
"$schema": "https://json-schema.org/draft/2020-12/schema",
"required": [
"input"
],
"properties": {
"input": {
"type": "object",
"required": [
"type",
"method",
"bodyType",
"body"
],
"properties": {
"body": {
"type": "object",
"required": [
"workflow_id",
"objective",
"steps"
],
"properties": {
"steps": {
"type": "array",
"items": {
"type": "object",
"required": [
"step_id",
"actor",
"action"
],
"properties": {
"actor": {
"type": "string"
},
"action": {
"type": "string"
},
"target": {
"type": "string"
},
"payload": {
"oneOf": [
{
"type": "object"
},
{
"type": "array"
},
{
"type": "string"
},
{
"type": "number"
},
{
"type": "boolean"
},
{
"type": "null"
}
]
},
"payment": {
"type": "object"
},
"step_id": {
"type": "string"
},
"receipt_id": {
"type": "string"
}
}
}
},
"policy": {
"type": "object"
},
"objective": {
"type": "string"
},
"workflow_id": {
"type": "string"
}
}
},
"type": {
"type": "string",
"const": "http"
},
"method": {
"enum": [
"POST"
],
"type": "string"
},
"bodyType": {
"enum": [
"json"
],
"type": "string"
}
},
"additionalProperties": false
},
"output": {
"type": "object",
"required": [
"type"
],
"properties": {
"type": {
"type": "string"
},
"example": {
"type": "object",
"required": [
"decision",
"retryable",
"workflow_id",
"step_count",
"total_payment_usdc",
"risk",
"findings",
"receipt",
"recommended_action",
"human_summary"
],
"properties": {
"risk": {
"type": "object",
"required": [
"score",
"issues"
],
"properties": {
"score": {
"type": "integer"
},
"issues": {
"type": "array",
"items": {
"type": "object",
"required": [
"kind",
"severity",
"match",
"excerpt"
],
"properties": {
"kind": {
"type": "string"
},
"match": {
"type": "string"
},
"excerpt": {
"type": "string"
},
"severity": {
"type": "string"
}
}
}
}
}
},
"receipt": {
"type": "object",
"required": [
"policy_version",
"workflow_sha256",
"findings_sha256",
"receipt_id"
],
"properties": {
"receipt_id": {
"type": "string"
},
"policy_version": {
"type": "string"
},
"findings_sha256": {
"type": "string"
},
"workflow_sha256": {
"type": "string"
}
}
},
"decision": {
"type": "string"
},
"findings": {
"type": "array",
"items": {
"type": "object"
}
},
"retryable": {
"type": "boolean"
},
"step_count": {
"type": "integer"
},
"workflow_id": {
"type": "string"
},
"human_summary": {
"type": "object"
},
"recommended_action": {
"type": "string"
},
"total_payment_usdc": {
"type": "string"
}
}
}
}
}
}
},
"docsUrl": "https://boundary-guard-x402.onrender.com/docs",
"service": {
"id": "boundary-guard",
"name": "Boundary Guard",
"docsUrl": "https://boundary-guard-x402.onrender.com/docs",
"llmsUrl": "https://boundary-guard-x402.onrender.com/llms.txt",
"category": "Data",
"provider": "Boundary Guard",
"categories": [
"Data",
"Infra",
"Search",
"Security",
"Agent observability",
"Lead enrichment"
],
"openapiUrl": "https://boundary-guard-x402.onrender.com/openapi.json",
"homepageUrl": "https://boundary-guard.vercel.app",
"providerUrl": "https://boundary-guard.vercel.app",
"providerName": "Boundary Guard",
"provider_url": "https://boundary-guard.vercel.app",
"categoryAliases": [
"Data",
"Infra",
"Search",
"Security",
"Agent observability",
"Lead enrichment"
],
"agenticMarketUrl": "https://agentic.market/?service=boundary-guard-x402-onrender-com",
"x402WellKnownUrl": "https://boundary-guard-x402.onrender.com/.well-known/x402",
"agenticMarketServiceId": "boundary-guard-x402-onrender-com"
},
"category": "Infra",
"keywords": [
"agents",
"workflow-audit",
"agent-observability",
"x402-buyer-safety",
"receipts",
"receipt-verification",
"spend-policy",
"runtime-trust",
"payment-safety",
"x402",
"evidence"
],
"provider": "Boundary Guard",
"categories": [
"Infra",
"Data",
"Search",
"Security",
"Agent observability",
"Lead enrichment"
],
"openapiUrl": "https://boundary-guard-x402.onrender.com/openapi.json",
"homepageUrl": "https://boundary-guard.vercel.app",
"providerUrl": "https://boundary-guard.vercel.app",
"serviceName": "Boundary Guard",
"buyerQueries": [
"workflow audit",
"agent spend control",
"policy checks",
"payment safety",
"agent observability",
"x402 buyer safety",
"agent audit trail",
"spending cap policy"
],
"discoverable": true,
"providerName": "Boundary Guard",
"provider_url": "https://boundary-guard.vercel.app",
"targetBuyers": [
"workflow audit and compliance agents",
"agent wallet and payment teams",
"multi-agent workflow builders"
],
"categoryAliases": [
"Data",
"Infra",
"Search",
"Security",
"Agent observability",
"Lead enrichment"
],
"x402WellKnownUrl": "https://boundary-guard-x402.onrender.com/.well-known/x402",
"marketplaceSearchTitle": "Boundary Guard - Workflow Audit API for Agent Spend Control",
"currentHighValueEndpoint": "/lead-brief-lite",
"marketplaceSearchDescription": "x402 buyer-safety workflow audit API for multi-step agent spend, receipt requirements, policy checks, and audit trails. Audit a workflow before the agent chains tools, spends funds, or triggers downstream actions.",
"currentHighValueEndpointCategory": "Data"
},
"agentic": {
"name": "Boundary Guard",
"tags": [
"agents",
"workflow-audit",
"agent-observability",
"x402-buyer-safety",
"receipts",
"receipt-verification",
"spend-policy",
"runtime-trust",
"payment-safety",
"x402",
"evidence"
],
"docsUrl": "https://boundary-guard-x402.onrender.com/docs",
"service": "Boundary Guard",
"category": "Infra",
"keywords": [
"agents",
"workflow-audit",
"agent-observability",
"x402-buyer-safety",
"receipts",
"receipt-verification",
"spend-policy",
"runtime-trust",
"payment-safety",
"x402",
"evidence"
],
"provider": "Boundary Guard",
"categories": [
"Infra",
"Data",
"Search",
"Security",
"Agent observability",
"Lead enrichment"
],
"openapiUrl": "https://boundary-guard-x402.onrender.com/openapi.json",
"homepageUrl": "https://boundary-guard.vercel.app",
"providerUrl": "https://boundary-guard.vercel.app",
"serviceName": "Boundary Guard",
"discoverable": true,
"providerName": "Boundary Guard",
"provider_url": "https://boundary-guard.vercel.app",
"categoryAliases": [
"Data",
"Infra",
"Search",
"Security",
"Agent observability",
"Lead enrichment"
],
"agenticMarketUrl": "https://agentic.market/?service=boundary-guard-x402-onrender-com",
"x402WellKnownUrl": "https://boundary-guard-x402.onrender.com/.well-known/x402",
"agenticMarketServiceId": "boundary-guard-x402-onrender-com",
"marketplaceSearchTitle": "Boundary Guard - Workflow Audit API for Agent Spend Control",
"marketplaceSearchDescription": "x402 buyer-safety workflow audit API for multi-step agent spend, receipt requirements, policy checks, and audit trails. Audit a workflow before the agent chains tools, spends funds, or triggers downstream actions."
},
"docsUrl": "https://boundary-guard-x402.onrender.com/docs",
"service": "Boundary Guard",
"category": "Infra",
"keywords": [
"agents",
"workflow-audit",
"agent-observability",
"x402-buyer-safety",
"receipts",
"receipt-verification",
"spend-policy",
"runtime-trust",
"payment-safety",
"x402",
"evidence"
],
"provider": "Boundary Guard",
"categories": [
"Infra",
"Data",
"Search",
"Security",
"Agent observability",
"Lead enrichment"
],
"openapiUrl": "https://boundary-guard-x402.onrender.com/openapi.json",
"homepageUrl": "https://boundary-guard.vercel.app",
"marketplace": {
"name": "Boundary Guard",
"tags": [
"agents",
"workflow-audit",
"agent-observability",
"x402-buyer-safety",
"receipts",
"receipt-verification",
"spend-policy",
"runtime-trust",
"payment-safety",
"x402",
"evidence"
],
"docsUrl": "https://boundary-guard-x402.onrender.com/docs",
"service": "Boundary Guard",
"category": "Infra",
"keywords": [
"agents",
"workflow-audit",
"agent-observability",
"x402-buyer-safety",
"receipts",
"receipt-verification",
"spend-policy",
"runtime-trust",
"payment-safety",
"x402",
"evidence"
],
"provider": "Boundary Guard",
"categories": [
"Infra",
"Data",
"Search",
"Security",
"Agent observability",
"Lead enrichment"
],
"openapiUrl": "https://boundary-guard-x402.onrender.com/openapi.json",
"homepageUrl": "https://boundary-guard.vercel.app",
"providerUrl": "https://boundary-guard.vercel.app",
"serviceName": "Boundary Guard",
"discoverable": true,
"providerName": "Boundary Guard",
"provider_url": "https://boundary-guard.vercel.app",
"categoryAliases": [
"Data",
"Infra",
"Search",
"Security",
"Agent observability",
"Lead enrichment"
],
"agenticMarketUrl": "https://agentic.market/?service=boundary-guard-x402-onrender-com",
"x402WellKnownUrl": "https://boundary-guard-x402.onrender.com/.well-known/x402",
"agenticMarketServiceId": "boundary-guard-x402-onrender-com",
"marketplaceSearchTitle": "Boundary Guard - Workflow Audit API for Agent Spend Control",
"marketplaceSearchDescription": "x402 buyer-safety workflow audit API for multi-step agent spend, receipt requirements, policy checks, and audit trails. Audit a workflow before the agent chains tools, spends funds, or triggers downstream actions."
},
"providerUrl": "https://boundary-guard.vercel.app",
"serviceName": "Boundary Guard",
"discoverable": true,
"providerName": "Boundary Guard",
"provider_url": "https://boundary-guard.vercel.app",
"categoryAliases": [
"Data",
"Infra",
"Search",
"Security",
"Agent observability",
"Lead enrichment"
],
"agenticMarketUrl": "https://agentic.market/?service=boundary-guard-x402-onrender-com",
"x402WellKnownUrl": "https://boundary-guard-x402.onrender.com/.well-known/x402",
"agenticMarketServiceId": "boundary-guard-x402-onrender-com",
"marketplaceSearchTitle": "Boundary Guard - Workflow Audit API for Agent Spend Control",
"marketplaceSearchDescription": "x402 buyer-safety workflow audit API for multi-step agent spend, receipt requirements, policy checks, and audit trails. Audit a workflow before the agent chains tools, spends funds, or triggers downstream actions."
}Provenance
- Seen in the source catalog
- 2026-06-12 04:27Z
- Last indexed by Roundhouse
- 2026-07-09 13:30Z
- Last enriched (probe, favicon, geo)
- 2026-09-22 17:15Z
- x402 version
- 2
- Max timeout
- 300s
- Liveness probe
- HTTP 404
Hand this page to an agent
Copy the prompt and paste it into Claude, an MCP client or your own agent — it will vet this service and call it over the free read API. No key, no account.
GET api.roundhouseai.io/v0/endpoints
Nothing indexed for this service or its provider yet. Not a claim that it is unused — only that we hold no record. Verified volume counts only settlements with an on-chain EIP-3009 marker.
Show the promptHide the prompt
Using Roundhouse, look up the x402 service boundary-guard-x402.onrender.com and tell me whether it is worth paying: what a call costs, whether the endpoint answered when last probed, and what its payment record actually shows. curl -s 'https://api.roundhouseai.io/v0/endpoints?q=boundary-guard-x402.onrender.com' curl -s 'https://api.roundhouseai.io/v0/merchants/<the payTo wallet returned above>' Then call it: read the price from the live 402 at https://boundary-guard-x402.onrender.com/workflow-audit, never from a cached figure, and pay with an x402 client. The /v0 API needs an API key (`authorization: Bearer rh_live_…`) on everything except /v0/unified* and /v0/endpoints. Mint a personal key for $0.01 at GET https://api.roundhouseai.io/v0/test/x402, or use an organization key from https://roundhouseai.io/dashboard/team. If you do not have Roundhouse tools or skills installed, read https://roundhouseai.io/skill.md first — it is the whole procedure.