← agentwallet.md

Payman AI

Wallet Official
Best for: Task-based agent payments with human approval workflows; agents that need spending limits and audit trails
Not ideal for: Fully autonomous agents without human oversight; crypto-native operations

Key Signals

Key Management
Custodial
Chain Support
USD + USDC
Integration
REST API
Pricing
Usage-based

Features

👤
Human-in-the-Loop Payment Approval
Agents submit payment requests that route to a designated human approver before executing. Approvers receive notifications via email or webhook and can approve, reject, or modify the amount. Configurable per-agent or per-task type.
🎛️
Configurable Spending Limits Per Task
Set hard limits on what any individual agent or task can spend in a session, per day, or per month. Requests that exceed the limit are automatically held for approval rather than failing silently, preserving the agent's ability to retry.
📋
Audit Trail for All Payments
Every payment request, approval decision, and fund movement is logged with timestamps, agent identity, task context, and approver identity. Exportable for compliance reporting, cost allocation, and debugging agent spend patterns.
💰
USD + USDC Support
Supports both traditional USD payments (ACH, wire) and USDC stablecoin payments from a single wallet abstraction. Useful for agents that need to pay both traditional vendors and crypto-native services.

Ratings

Spending Controls
4.8/5
Human-in-the-Loop UX
4.6/5
Ease of Integration
4.3/5
Chain Coverage
2.8/5

Ratings based on Payman AI documentation and published API reference — not end-to-end production testing. Chain coverage is intentionally low; Payman focuses on USD/USDC rather than DeFi breadth.

Integration

# Submit a payment request requiring human approval curl -X POST https://app.paymanai.com/api/v1/payments/request \ -H "Authorization: Bearer $PAYMAN_API_KEY" \ -H "Content-Type: application/json" \ -d '{ "agentId": "'$AGENT_ID'", "taskId": "task-web-research-042", "payee": { "type": "us_ach", "name": "Research Data Vendor Inc.", "accountNumber": "...", "routingNumber": "..." }, "amount": 25.00, "currency": "USD", "memo": "Web research dataset purchase", "requireApproval": true, "approverEmail": "human@yourcompany.com" }' # Check payment request status curl https://app.paymanai.com/api/v1/payments/request/$REQUEST_ID \ -H "Authorization: Bearer $PAYMAN_API_KEY"

Alternatives & Tradeoffs

Skyfire
Better for fully autonomous agent-to-agent payments without human approval steps
Circle Programmable Wallets
Broader chain support and USDC-native gas sponsorship for autonomous operations
Coinbase AgentKit
Open source; better for onchain operations without needing human approval workflows