arn-x402-payguard-payment-security.rajdeep-dutta-in.workers.dev
ARN x402 PayGuard: Live x402 payment security for AI agents. Verify sellers before payment with preflight checks for price, network, asset, payTo, redirects, and payment-challenge consistency. Returns ALLOW, CAUTION, or BLOCK.
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.001 USDC on Base to 0xa7e1…abeCD. The signed payment is good for 5 minutes.
- Paid to
- 0xa7e1…abeCD
- USD Coin contract
- 0x8335…02913
- Payment window
- 5 minutes
- As published
- 1000 smallest units
That figure is in the token’s smallest units. Roundhouse does not hold this contract’s decimals, so it is shown as published rather than converted.
- Paid to
- 5vX2u7…hzKyM
- Token contract
- EPjFWd…TDt1v
- Payment window
- 5 minutes
The catalog’s raw entry
[
{
"asset": "0x833589fCD6eDb6E08f4c7C32D4f71b54bdA02913",
"extra": {
"name": "USD Coin",
"version": "2"
},
"payTo": "0xa7e1fe3744E3b6D55237d95cE575cAFe3b8abeCD",
"amount": "1000",
"scheme": "exact",
"network": "eip155:8453",
"maxTimeoutSeconds": 300
},
{
"asset": "EPjFWdd5AufqSSqeM2qN1xzybapC8G4wEGGkZwyTDt1v",
"extra": {
"feePayer": "Hc3sdEAsCGQcpgfivywog9uwtk8gUBUZgsxdME1EJy88"
},
"payTo": "5vX2u7mkwhxpvQYNA7SqmauJjkcfnxETQ6tKVZphzKyM",
"amount": "1000",
"scheme": "exact",
"network": "solana:5eykt4UsFv8P8NJdTREpY1vzqKqZKvdp",
"maxTimeoutSeconds": 300
}
]Extensions
{
"bazaar": {
"info": {
"input": {
"body": {
"url": "https://paid-agent.example/api",
"intended_spend_usdc": 0.03
},
"type": "http",
"method": "POST",
"bodyType": "json"
},
"output": {
"type": "json",
"example": {
"asset": "0x833589fCD6eDb6E08f4c7C32D4f71b54bdA02913",
"payTo": "0x1111111111111111111111111111111111111111",
"checks": {
"https": true,
"x402_v2": true,
"http_402": true,
"reachable": true,
"x402_valid": true,
"exact_payment": true,
"canonical_usdc": true,
"positive_amount": true,
"challenge_stable": true,
"resource_binding": true,
"content_type_sane": true,
"supported_network": true,
"no_unsafe_redirect": true,
"reasonable_timeout": true,
"asset_address_valid": true,
"pay_to_address_valid": true,
"pay_to_safe_receiver": true,
"within_intended_spend": true,
"structured_response_sane": true,
"response_size_within_limit": true
},
"errors": [],
"scheme": "exact",
"network": "eip155:8453",
"decision": "ALLOW",
"warnings": [],
"reachable": true,
"latency_ms": 42,
"simulation": {
"status": "UNAVAILABLE",
"failure": null
},
"x402_valid": true,
"methodology": "live-security-v1",
"reason_codes": [],
"x402_version": 2,
"authorization": {
"status": "UNAVAILABLE",
"mechanism": null
},
"payment_required": true,
"quoted_price_usdc": 0.03,
"intended_spend_usdc": 0.03,
"quoted_price_atomic": "30000"
}
}
},
"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": {
"required": [
"url"
],
"properties": {
"url": {
"type": "string",
"format": "uri",
"description": "HTTPS URL of the x402 seller endpoint to inspect live"
},
"authorization": {
"type": "object",
"properties": {
"asset": {
"type": "string",
"description": "Payment asset the buyer is about to authorize"
},
"payTo": {
"type": "string",
"description": "Payment recipient the buyer is about to authorize"
},
"payer": {
"type": "string",
"description": "Optional expected EIP-3009 authorization payer; distinct from a transaction relayer"
},
"network": {
"type": "string",
"description": "CAIP-2 payment network the buyer is about to authorize"
},
"resource": {
"type": "string",
"format": "uri",
"description": "Seller resource the authorization is intended to purchase"
},
"transaction": {
"type": "object",
"properties": {
"to": {
"type": "string",
"description": "EVM call target; must match the challenged payment asset"
},
"data": {
"type": "string",
"pattern": "^0x(?:[0-9a-fA-F]{2})+$",
"description": "Non-empty hex calldata for the unsigned simulation"
},
"from": {
"type": "string",
"description": "Optional EVM caller address for eth_call"
},
"value": {
"type": "string",
"pattern": "^0x(?:0|[1-9a-fA-F][0-9a-fA-F]*)$",
"description": "Optional hexadecimal native-value quantity for eth_call"
}
},
"description": "Optional unsigned Base eth_call input reused for transaction simulation and supported canonical USDC authorization decoding",
"additionalProperties": false
},
"valid_after": {
"type": [
"integer",
"string"
],
"description": "Optional authorization valid-after Unix timestamp"
},
"valid_before": {
"type": [
"integer",
"string"
],
"description": "Optional authorization expiry Unix timestamp"
},
"amount_atomic": {
"type": "string",
"pattern": "^[0-9]+$",
"description": "Atomic token amount the buyer is about to authorize"
}
},
"description": "Optional unsigned payment authorization context to compare with the live x402 challenge",
"additionalProperties": false
},
"intended_spend_usdc": {
"type": "number",
"description": "Optional maximum USDC amount the buyer intends to authorize",
"exclusiveMinimum": 0
}
}
},
"type": {
"type": "string",
"const": "http"
},
"method": {
"enum": [
"POST"
],
"type": "string"
},
"bodyType": {
"enum": [
"json",
"form-data",
"text"
],
"type": "string"
}
},
"additionalProperties": false
},
"output": {
"type": "object",
"required": [
"type"
],
"properties": {
"type": {
"type": "string"
},
"example": {
"type": "object",
"required": [
"decision",
"reason_codes",
"checks",
"warnings",
"errors",
"reachable",
"payment_required",
"x402_valid",
"x402_version",
"scheme",
"network",
"asset",
"payTo",
"quoted_price_atomic",
"quoted_price_usdc",
"intended_spend_usdc",
"authorization",
"simulation",
"latency_ms",
"methodology"
],
"properties": {
"asset": {
"type": [
"string",
"null"
]
},
"payTo": {
"type": [
"string",
"null"
]
},
"checks": {
"type": "object",
"required": [
"https",
"reachable",
"no_unsafe_redirect",
"http_402",
"x402_valid",
"x402_v2",
"exact_payment",
"supported_network",
"asset_address_valid",
"canonical_usdc",
"pay_to_address_valid",
"pay_to_safe_receiver",
"positive_amount",
"reasonable_timeout",
"resource_binding",
"response_size_within_limit",
"content_type_sane",
"structured_response_sane",
"challenge_stable",
"within_intended_spend"
],
"properties": {
"https": {
"type": "boolean"
},
"x402_v2": {
"type": "boolean"
},
"http_402": {
"type": "boolean"
},
"reachable": {
"type": "boolean"
},
"x402_valid": {
"type": "boolean"
},
"exact_payment": {
"type": "boolean"
},
"canonical_usdc": {
"type": "boolean"
},
"positive_amount": {
"type": "boolean"
},
"challenge_stable": {
"type": "boolean"
},
"resource_binding": {
"type": "boolean"
},
"content_type_sane": {
"type": "boolean"
},
"supported_network": {
"type": "boolean"
},
"no_unsafe_redirect": {
"type": "boolean"
},
"reasonable_timeout": {
"type": "boolean"
},
"asset_address_valid": {
"type": "boolean"
},
"pay_to_address_valid": {
"type": "boolean"
},
"pay_to_safe_receiver": {
"type": "boolean"
},
"within_intended_spend": {
"type": [
"boolean",
"null"
]
},
"structured_response_sane": {
"type": "boolean"
},
"response_size_within_limit": {
"type": "boolean"
}
},
"additionalProperties": false
},
"errors": {
"type": "array",
"items": {
"type": "object",
"required": [
"code",
"message"
],
"properties": {
"code": {
"enum": [
"HTTPS_REQUIRED",
"INVALID_URL",
"SELLER_UNREACHABLE",
"SELLER_TIMEOUT",
"UNSAFE_REDIRECT",
"UNSAFE_REDIRECT_CREDENTIALS",
"HTTPS_DOWNGRADE",
"REDIRECT_LOOP",
"EXCESSIVE_REDIRECTS",
"EXPECTED_402",
"INVALID_X402_CHALLENGE",
"UNSUPPORTED_X402_VERSION",
"UNSUPPORTED_PAYMENT_SCHEME",
"NETWORK_MISMATCH",
"DUPLICATE_PAYMENT_REQUIREMENTS",
"CONFLICTING_PAYMENT_REQUIREMENTS",
"AMBIGUOUS_PAYMENT_OPTIONS",
"INVALID_PAYMENT_ASSET",
"NON_CANONICAL_USDC",
"INVALID_PAY_TO",
"UNSAFE_RECEIVER",
"RECIPIENT_RPC_UNAVAILABLE",
"INVALID_PAYMENT_REQUIREMENT",
"INVALID_PAYMENT_TIMEOUT",
"RESOURCE_BINDING_MISMATCH",
"INVALID_CONTENT_TYPE",
"RESPONSE_TOO_LARGE",
"MALFORMED_JSON",
"INVALID_RESPONSE_SCHEMA",
"NETWORK_CHANGED",
"ASSET_CHANGED",
"PAY_TO_CHANGED",
"PRICE_CHANGED",
"PAYMENT_REQUIREMENTS_MUTATED",
"PAYMENT_CHALLENGE_BODY_MISMATCH",
"INVALID_INTENDED_SPEND",
"PRICE_EXCEEDS_INTENT",
"AUTH_AMOUNT_MISMATCH",
"AUTH_ASSET_MISMATCH",
"AUTH_NETWORK_MISMATCH",
"AUTH_RECIPIENT_MISMATCH",
"CALLDATA_PAYER_MISMATCH",
"AUTH_RESOURCE_MISMATCH",
"AUTH_WINDOW_UNSAFE",
"TRANSACTION_SIMULATION_REVERTED",
"TRANSACTION_SIMULATION_RPC_UNAVAILABLE",
"SAFE_REDIRECT_FOLLOWED"
],
"type": "string"
},
"message": {
"type": "string"
}
},
"additionalProperties": false
}
},
"scheme": {
"enum": [
"exact",
null
],
"type": [
"string",
"null"
]
},
"network": {
"type": [
"string",
"null"
]
},
"decision": {
"enum": [
"ALLOW",
"CAUTION",
"BLOCK"
],
"type": "string"
},
"warnings": {
"type": "array",
"items": {
"type": "object",
"required": [
"code",
"message"
],
"properties": {
"code": {
"enum": [
"HTTPS_REQUIRED",
"INVALID_URL",
"SELLER_UNREACHABLE",
"SELLER_TIMEOUT",
"UNSAFE_REDIRECT",
"UNSAFE_REDIRECT_CREDENTIALS",
"HTTPS_DOWNGRADE",
"REDIRECT_LOOP",
"EXCESSIVE_REDIRECTS",
"EXPECTED_402",
"INVALID_X402_CHALLENGE",
"UNSUPPORTED_X402_VERSION",
"UNSUPPORTED_PAYMENT_SCHEME",
"NETWORK_MISMATCH",
"DUPLICATE_PAYMENT_REQUIREMENTS",
"CONFLICTING_PAYMENT_REQUIREMENTS",
"AMBIGUOUS_PAYMENT_OPTIONS",
"INVALID_PAYMENT_ASSET",
"NON_CANONICAL_USDC",
"INVALID_PAY_TO",
"UNSAFE_RECEIVER",
"RECIPIENT_RPC_UNAVAILABLE",
"INVALID_PAYMENT_REQUIREMENT",
"INVALID_PAYMENT_TIMEOUT",
"RESOURCE_BINDING_MISMATCH",
"INVALID_CONTENT_TYPE",
"RESPONSE_TOO_LARGE",
"MALFORMED_JSON",
"INVALID_RESPONSE_SCHEMA",
"NETWORK_CHANGED",
"ASSET_CHANGED",
"PAY_TO_CHANGED",
"PRICE_CHANGED",
"PAYMENT_REQUIREMENTS_MUTATED",
"PAYMENT_CHALLENGE_BODY_MISMATCH",
"INVALID_INTENDED_SPEND",
"PRICE_EXCEEDS_INTENT",
"AUTH_AMOUNT_MISMATCH",
"AUTH_ASSET_MISMATCH",
"AUTH_NETWORK_MISMATCH",
"AUTH_RECIPIENT_MISMATCH",
"CALLDATA_PAYER_MISMATCH",
"AUTH_RESOURCE_MISMATCH",
"AUTH_WINDOW_UNSAFE",
"TRANSACTION_SIMULATION_REVERTED",
"TRANSACTION_SIMULATION_RPC_UNAVAILABLE",
"SAFE_REDIRECT_FOLLOWED"
],
"type": "string"
},
"message": {
"type": "string"
}
},
"additionalProperties": false
}
},
"reachable": {
"type": "boolean"
},
"latency_ms": {
"type": "integer",
"minimum": 0
},
"simulation": {
"type": "object",
"required": [
"status",
"failure"
],
"properties": {
"status": {
"enum": [
"SUCCESS",
"REVERTED",
"UNAVAILABLE",
"UNKNOWN"
],
"type": "string"
},
"failure": {
"type": [
"string",
"null"
]
}
},
"additionalProperties": false
},
"x402_valid": {
"type": "boolean"
},
"methodology": {
"type": "string",
"const": "live-security-v1"
},
"reason_codes": {
"type": "array",
"items": {
"enum": [
"HTTPS_REQUIRED",
"INVALID_URL",
"SELLER_UNREACHABLE",
"SELLER_TIMEOUT",
"UNSAFE_REDIRECT",
"UNSAFE_REDIRECT_CREDENTIALS",
"HTTPS_DOWNGRADE",
"REDIRECT_LOOP",
"EXCESSIVE_REDIRECTS",
"EXPECTED_402",
"INVALID_X402_CHALLENGE",
"UNSUPPORTED_X402_VERSION",
"UNSUPPORTED_PAYMENT_SCHEME",
"NETWORK_MISMATCH",
"DUPLICATE_PAYMENT_REQUIREMENTS",
"CONFLICTING_PAYMENT_REQUIREMENTS",
"AMBIGUOUS_PAYMENT_OPTIONS",
"INVALID_PAYMENT_ASSET",
"NON_CANONICAL_USDC",
"INVALID_PAY_TO",
"UNSAFE_RECEIVER",
"RECIPIENT_RPC_UNAVAILABLE",
"INVALID_PAYMENT_REQUIREMENT",
"INVALID_PAYMENT_TIMEOUT",
"RESOURCE_BINDING_MISMATCH",
"INVALID_CONTENT_TYPE",
"RESPONSE_TOO_LARGE",
"MALFORMED_JSON",
"INVALID_RESPONSE_SCHEMA",
"NETWORK_CHANGED",
"ASSET_CHANGED",
"PAY_TO_CHANGED",
"PRICE_CHANGED",
"PAYMENT_REQUIREMENTS_MUTATED",
"PAYMENT_CHALLENGE_BODY_MISMATCH",
"INVALID_INTENDED_SPEND",
"PRICE_EXCEEDS_INTENT",
"AUTH_AMOUNT_MISMATCH",
"AUTH_ASSET_MISMATCH",
"AUTH_NETWORK_MISMATCH",
"AUTH_RECIPIENT_MISMATCH",
"CALLDATA_PAYER_MISMATCH",
"AUTH_RESOURCE_MISMATCH",
"AUTH_WINDOW_UNSAFE",
"TRANSACTION_SIMULATION_REVERTED",
"TRANSACTION_SIMULATION_RPC_UNAVAILABLE",
"SAFE_REDIRECT_FOLLOWED"
],
"type": "string"
},
"uniqueItems": true
},
"x402_version": {
"enum": [
2,
null
],
"type": [
"integer",
"null"
]
},
"authorization": {
"type": "object",
"required": [
"status",
"mechanism"
],
"properties": {
"status": {
"enum": [
"VERIFIED",
"MISMATCH",
"UNAVAILABLE"
],
"type": "string"
},
"mechanism": {
"type": [
"string",
"null"
]
}
},
"additionalProperties": false
},
"payment_required": {
"type": "boolean"
},
"quoted_price_usdc": {
"type": [
"number",
"null"
]
},
"intended_spend_usdc": {
"type": [
"number",
"null"
]
},
"quoted_price_atomic": {
"type": [
"string",
"null"
]
}
},
"additionalProperties": false
}
}
}
}
}
}
}Provenance
- Seen in the source catalog
- 2026-09-25 09:02Z
- Last indexed by Roundhouse
- 2026-09-25 17:30Z
- Last enriched (probe, favicon, geo)
- 2026-09-20 12:45Z
- 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
This endpoint's own trailing-30-day call count, as published by the upstream catalog and snapshotted daily. 27 snapshots so far. Verified volume counts only settlements with an on-chain EIP-3009 marker.
Show the promptHide the prompt
Using Roundhouse, look up the x402 service arn-x402-payguard-payment-security.rajdeep-dutta-in.workers.dev 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=arn-x402-payguard-payment-security.rajdeep-dutta-in.workers.dev' 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://arn-x402-payguard-payment-security.rajdeep-dutta-in.workers.dev/preflight, 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.