LIVE ON BASE MAINNET

EP AgentIAM — x402 Paid Services

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.

9
Paid Endpoints
x402 v2
Protocol
BASE
Mainnet
USDC
Settlement
PROTOCOL IDENTITY
PayTo Wallet (canonical)
0x069c6012E053DFBf50390B19FaE275aD96D22ed7
USDC Asset (Base Mainnet)
0x833589fCD6eDb6E08f4c7C32D4f71b54bdA02913
Network / CAIP-2
eip155:8453
Scheme / Version
exact / x402 v2 (header-based)
PAID ENDPOINTS
POST/x402/validate$0.01
Full EP AgentIAM policy validation — agent identity, execution integrity, risk score, compliance flags, and proof_hash before any trade, transfer, or deploy.
curl -X POST /x402/validate
  -H 'X-PAYMENT: <base64>'
  -d '{"agent_id":"yours",
       "action":"trade",
       "context":{"trade_value":1000}}'
POST/x402/noleak$0.01
Execution integrity / leak detection. Scans a signal or payload for tampering, prompt injection, and unauthorized data flow. Returns proof_hash on pass.
curl -X POST /x402/noleak
  -H 'X-PAYMENT: <base64>'
  -d '{"signal":{...},
       "agent_id":"yours"}'
POST/x402/memguard$0.01
Memory state verification. Detects drift, corruption, and unauthorized modification of agent memory against a reference snapshot.
curl -X POST /x402/memguard
  -H 'X-PAYMENT: <base64>'
  -d '{"state":{...},
       "referenceState":{...}}'
POST/x402/riskoracle$0.01
Pre-action multi-factor risk scoring — market, counterparty, operational risk before any trade, transfer, or deploy. Returns score, level, factors, recommendation.
curl -X POST /x402/riskoracle
  -H 'X-PAYMENT: <base64>'
  -d '{"action_type":"trade",
       "parameters":{"amount":1000}}'
POST/x402/secureexec$0.01
Sandboxed tool execution validation. Confirms a tool call is safe to run in an isolated environment. Returns proof_hash and recommendation.
curl -X POST /x402/secureexec
  -H 'X-PAYMENT: <base64>'
  -d '{"tool":"web.fetch",
       "params":{"url":"..."}}'
POST/x402/flowcore$0.02
Full orchestration pipeline. Chains NoLeak + RiskOracle + SecureExec + MemGuard in a single call. The highest-value EP service.
curl -X POST /x402/flowcore
  -H 'X-PAYMENT: <base64>'
  -d '{"flow":{...},
       "agent_id":"yours"}'
POST/x402/latest-signals$0.001
Latest DELPHI intelligence signals across security, defi, market, and ai-ecosystem categories. Cheapest entry point to the Delphi feed.
curl -X POST /x402/latest-signals
  -H 'X-PAYMENT: <base64>'
  -d '{"limit":20,
       "category":"security"}'
POST/x402/signal-query$0.002
Query DELPHI signals by topic. Cross-referenced, relevance-scored. 476+ signals updated every 15 minutes.
curl -X POST /x402/signal-query
  -H 'X-PAYMENT: <base64>'
  -d '{"q":"ethereum security",
       "limit":10}'
POST/x402/intelligence-report$0.05
Deep cross-referenced intelligence report. Comprehensive analysis with contradiction detection and confidence scoring.
curl -X POST /x402/intelligence-report
  -H 'X-PAYMENT: <base64>'
  -d '{"topic":"Base DeFi
              security posture"}'
HOW PAYMENT WORKS

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.

1

Request the resource

Call any endpoint. Server replies HTTP 402 with a base64-encoded PAYMENT-REQUIRED header containing amount, asset, payTo, and network.

2

Sign a USDC payment

Sign an EIP-3009 transferWithAuthorization for the quoted amount to the quoted payTo. Base64-encode the signed payload.

3

Retry with X-PAYMENT

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.

DISCOVERY SURFACES
Agent Discovery
Agent Card
EP Manifest
Agent Skill Card
Payment Flow Doc
Full Agent Docs
x402 Directory
Virtuals ACP
RAW STATUS
Machine-readable JSON at the same path — send Accept: application/json:
curl -H 'Accept: application/json' \
  https://achillesalpha.onrender.com/x402/status