9 SERVICES · LIVE ON BASE

Achilles EP Paid Services Catalog

Every service listed here is a live x402 v2 endpoint. Price is in USDC, settled on Base Mainnet per call via EIP-3009. No subscriptions, no keys — only signed authorizations. Six core AgentIAM services plus three Delphi intelligence feeds.

CORE AGENTIAM · $0.01 – $0.02 per call
POST AGENT-IAM /x402/validate $0.01

Validate

Full policy validation for agent proposals. Verifies agent identity, evaluates action integrity, returns a risk score, compliance flags, and a signed proof_hash before any trade, transfer, or deploy.
INPUT
{ agent_id, action, context }
OUTPUT
{ validated, risk_score, trust_level, proof_hash, recommendation }
curl -X POST /x402/validate \
  -d '{"agent_id":"a","action":"trade","context":{"trade_value":1000}}'
agent-iamvalidationpre-actionproof
POST SECURITY /x402/noleak $0.01

NoLeak

Execution integrity and leak detection. Scans a signal or payload for tampering, prompt injection, and unauthorized data flow. Returns a signed proof_hash on pass.
INPUT
{ signal, agent_id? }
OUTPUT
{ integrity_ok, leak_detected, risk_score, proof_hash }
curl -X POST /x402/noleak \
  -d '{"signal":{"source":"tool","payload":"..."},"agent_id":"a"}'
integrityinjectionleak-detection
POST MEMORY /x402/memguard $0.01

MemGuard

Memory state verification. Detects drift, corruption, and unauthorized modification of an agent’s memory state against an optional reference snapshot.
INPUT
{ state, referenceState?, agent_id? }
OUTPUT
{ memory_ok, drift_detected, corruption_detected, proof_hash }
curl -X POST /x402/memguard \
  -d '{"state":{...},"referenceState":{...},"agent_id":"a"}'
memorydriftcorruption
POST RISK /x402/riskoracle $0.01

RiskOracle

Pre-action multi-factor risk scoring. Market risk, counterparty risk, and operational risk evaluated before any trade, transfer, or deploy.
INPUT
{ action_type, parameters, agent_id? }
OUTPUT
{ risk_score, risk_level, factors, recommendation }
curl -X POST /x402/riskoracle \
  -d '{"action_type":"trade","parameters":{"amount":5000,"token":"ETH"}}'
riskpre-actionoracle
POST SANDBOX /x402/secureexec $0.01

SecureExec

Sandboxed tool execution validation. Confirms a tool call is safe to run in an isolated environment before the agent invokes it. Returns proof_hash on pass.
INPUT
{ tool, params?, agent_id? }
OUTPUT
{ execution_safe, sandbox_verified, proof_hash, recommendation }
curl -X POST /x402/secureexec \
  -d '{"tool":"web.fetch","params":{"url":"..."},"agent_id":"a"}'
sandboxtool-executionproof
POST ORCHESTRATION /x402/flowcore $0.02

FlowCore ★ BUNDLE

Full orchestration pipeline. Chains NoLeak + RiskOracle + SecureExec + MemGuard in a single call. Highest-value EP service — one payment for the entire agent safety stack.
INPUT
{ flow, agent_id? }
OUTPUT
{ pipeline_ok, stages, recommendation }
curl -X POST /x402/flowcore \
  -d '{"flow":{"action":"trade","tool":"web.fetch","state":{}}}'
orchestrationpipelinefull-stack
DELPHI INTELLIGENCE · $0.001 – $0.05 per call
POST SIGNALS /x402/latest-signals $0.001

Latest Signals

Latest Delphi intelligence signals across security, defi, market, and AI-ecosystem categories. No query needed — returns the newest signals available.
INPUT
{ limit?, category? }
OUTPUT
{ signals, total_available, last_updated }
curl -X POST /x402/latest-signals \
  -d '{"limit":20,"category":"security"}'
delphifeedlatest
POST QUERY /x402/signal-query $0.002

Signal Query

Query Delphi intelligence signals by topic. Cross-referenced and relevance-scored. 476+ signals updated every 15 minutes.
INPUT
{ q, limit? }
OUTPUT
{ signals, count, timestamp }
curl -X POST /x402/signal-query \
  -d '{"q":"ethereum security","limit":10}'
delphiqueryoracle
POST REPORT /x402/intelligence-report $0.05

Intelligence Report

Deep intelligence report from the Delphi Oracle. Comprehensive analysis with cross-referenced signals, contradiction detection, and confidence scoring.
INPUT
{ topic }
OUTPUT
{ report, signals_analyzed, confidence, contradictions }
curl -X POST /x402/intelligence-report \
  -d '{"topic":"Base L2 ecosystem Q2 2026"}'
delphideep-researchanalysis
Need the machine-readable version? The full discovery manifest is at /.well-known/agent-services.json and the canonical payment flow is at /llms-pay.txt.
Raw JSON Raw Flow