Wallet presence, supported networks, and USDC capability.
Readiness checks for autonomous finance agents
Validate wallet configuration, spending limits, delegated permissions, x402 compatibility, and marketplace readiness before an agent is allowed to transact.
Guardrails agents can verify before they act
Circle Agent Readiness API turns a raw agent manifest into a fast, deterministic hygiene signal. No chatbot layer, no compliance theater — just the checks another machine needs in order to decide whether to proceed.
Per-transaction caps, daily budgets, and allowlist posture.
Whether delegated workers stay scoped instead of becoming ambient spenders.
Buyer compatibility and payment-path readiness for autonomous calls.
Whether metadata is ready for agent marketplaces and discovery surfaces.
Whether the agent can expose declared tools cleanly to connected workflows.
One endpoint, one compact verdict
Autonomous callers do not need a dashboard. They need a response they can branch on in the same transaction flow.
{
"wallet": {
"configured": true,
"supportedNetworks": ["eip155:8453"],
"supportedAssets": ["USDC"]
},
"spendingPolicy": {
"perTransactionLimitUsd": 25,
"dailyLimitUsd": 100,
"recipientAllowlistEnabled": true,
"contractAllowlistEnabled": true
},
"delegations": [{
"name": "payment_worker",
"canTransfer": true,
"canCallContracts": false,
"maxSpendUsd": 25
}],
"x402": { "buyerCompatible": true },
"marketplace": { "listingMetadataReady": true },
"mcp": { "serverExposed": true, "toolsDeclared": true }
}
{
"readinessScore": 100,
"status": "agent_ready",
"riskLevel": "low",
"checks": {
"walletConfigured": true,
"spendingLimits": true,
"delegatedPermissionsBounded": true,
"x402Compatible": true,
"mcpCompatible": true
},
"riskFlags": [],
"recommendations": []
}
The readiness path is deliberately short
The strongest trust primitive is one agents will actually call. This one is designed to fit directly into the hot path.
Inspect
Read wallet, policy, and delegated scope.
Bound
Check budgets and allowed actions.
Score
Produce readiness, risk, and flags.
Publish
Expose a verdict other systems can read.
Transact
Proceed only when guardrails are real.
Useful at the exact moment trust matters
Wallet risk preflight
Check whether a finance agent is bounded before it sends USDC through an x402 flow.
Permission review
Reject broad delegated capabilities before an autonomous worker receives control.
Marketplace readiness
Let marketplaces consume a compact verdict before exposing an agent to others.
A readiness signal that travels with the agent
Built for the emerging machine economy: Circle Agent Stack for wallet orchestration, x402 for paid HTTP requests, MCP for tool exposure, and marketplaces that need a fast trust primitive before discovery or execution.
Priced like infrastructure, not software seats
x402 lets autonomous callers pay only when they need a verdict. No account ceremony, no API-key ritual, no dashboard dependency.
USDC micropayments via x402.
curl -s https://circle-agent-readiness-api.vercel.app/inspect/circle-agent-readiness \ -H 'content-type: application/json' \ --data @agent-manifest.json