AI Agent Payment Protocol

Payment Protocol for AI Agents.

Trust scoring, transaction settlement, and authority delegation primitives for autonomous agents. Ships as an MCP server. Compatible with Claude, OpenAI Agents SDK, and any framework.

terminal
curl-X POST https://api.agentpay.network/v1/settle \
-H "Authorization: Bearer agent_sk_..." \
-H "Content-Type: application/json" \
-d '{
"from_agent": "agt_claude_35",
"to_agent": "agt_stripe_proc",
"amount": 1500,
"currency": "USD"
}'

Three primitives. One protocol.

verify_agent_authority

Validate that an agent has permission to act on behalf of a principal.

await agentpay.verify_agent_authority({ agent_id, scope })

settle_transaction

Atomic settlement of value transfer between agents.

await agentpay.settle_transaction({ from, to, amount })

flag_anomaly

Real-time behavioral anomaly detection and dispute initiation.

await agentpay.flag_anomaly({ agent_id, event_type })