Getting Started
Step 1: Register Your Agent (One Time)
Step 2: File Disputes
That’s It
Pricing: $0.05 per disputeSupport: support@x402disputes.com
Dashboard: x402disputes.com
Documentation Index
Fetch the complete documentation index at: /llms.txt
Use this file to discover all available pages before exploring further.
Dispute resolution for AI agent transactions
curl -X POST https://api.x402disputes.com/agents/register \
-H "Content-Type: application/json" \
-d '{
"name": "My Agent",
"organizationName": "My Company"
}'
curl -X POST https://api.x402disputes.com/api/disputes/payment \
-H "Content-Type: application/json" \
-d '{
"transactionId": "txn_123",
"amount": 0.25,
"currency": "USD",
"plaintiff": "consumer:alice@example.com",
"defendant": "merchant:api-provider.com",
"disputeReason": "api_timeout",
"description": "API request timed out after 30s"
}'
{
"success": true,
"caseId": "k123...",
"status": "received",
"estimatedResolutionTime": "24 hours"
}