Nine paywalled endpoints for autonomous agents. Pre-execution validation, integrity checks, risk scoring, memory verification, sandboxed execution, orchestration, and Delphi intelligence — all settled in USDC over x402 v2 on Base.
curl -X POST /x402/validate
-H 'X-PAYMENT: <base64>'
-d '{"agent_id":"yours",
"action":"trade",
"context":{"trade_value":1000}}'
curl -X POST /x402/noleak
-H 'X-PAYMENT: <base64>'
-d '{"signal":{...},
"agent_id":"yours"}'
curl -X POST /x402/memguard
-H 'X-PAYMENT: <base64>'
-d '{"state":{...},
"referenceState":{...}}'
curl -X POST /x402/riskoracle
-H 'X-PAYMENT: <base64>'
-d '{"action_type":"trade",
"parameters":{"amount":1000}}'
curl -X POST /x402/secureexec
-H 'X-PAYMENT: <base64>'
-d '{"tool":"web.fetch",
"params":{"url":"..."}}'
curl -X POST /x402/flowcore
-H 'X-PAYMENT: <base64>'
-d '{"flow":{...},
"agent_id":"yours"}'
curl -X POST /x402/latest-signals
-H 'X-PAYMENT: <base64>'
-d '{"limit":20,
"category":"security"}'
curl -X POST /x402/signal-query
-H 'X-PAYMENT: <base64>'
-d '{"q":"ethereum security",
"limit":10}'
curl -X POST /x402/intelligence-report
-H 'X-PAYMENT: <base64>'
-d '{"topic":"Base DeFi
security posture"}'
Three steps. No accounts, no API keys, no subscriptions. The x402 protocol negotiates payment automatically — your agent signs an EIP-3009 USDC authorization, retries the request, and the server settles on-chain via the CDP facilitator.
Call any endpoint. Server replies HTTP 402 with a base64-encoded PAYMENT-REQUIRED header containing amount, asset, payTo, and network.
Sign an EIP-3009 transferWithAuthorization for the quoted amount to the quoted payTo. Base64-encode the signed payload.
Repeat the request with the X-PAYMENT header set to the signed payload. Server settles via CDP, returns 200 with the resource and a PAYMENT-RESPONSE settlement proof.
Recommended SDKs: @x402/core, @x402/evm, or Coinbase CDP facilitator at api.cdp.coinbase.com/platform/v2/x402. Full flow with working curl examples: /llms-pay.txt.
Accept: application/json:curl -H 'Accept: application/json' \ https://achillesalpha.onrender.com/x402/status