Skip to main content

x402 Fee Tiers

The x402 micropayment protocol uses a tiered fee structure based on transaction amount. Fees are deducted automatically during settlement.
Transaction AmountFee Rate
00 - 102.0%
1010 - 1001.0%
100100 - 1,0000.5%
$1,000+0.25%
Query the current fee schedule programmatically:
curl -X GET https://api.agentwallex.com/api/v1/x402/fees/tiers
{
  "tiers": [
    { "min_amount": "0", "max_amount": "10", "percentage": "2.0" },
    { "min_amount": "10", "max_amount": "100", "percentage": "1.0" },
    { "min_amount": "100", "max_amount": "1000", "percentage": "0.5" },
    { "min_amount": "1000", "max_amount": "", "percentage": "0.25" }
  ]
}
Always use the /x402/fees/tiers endpoint to display current rates in your UI rather than hardcoding values.

Platform Plans

FeatureStarterGrowthEnterprise
Agent walletsUp to 10Up to 100Unlimited
API rate limit60 req/min300 req/minCustom
Daily request limit10,000100,000Custom
x402 sessions50 active500 activeUnlimited
Audit log retention90 days1 yearCustom
IP allowlistingIncludedIncluded
Human approval routingIncludedIncluded
Dedicated supportIncluded
Custom MPC configurationIncluded
SLA99.9%99.99%

Settlement Parameters

x402 settlement operates on the following defaults:
ParameterValue
Settlement interval300 seconds (5 minutes)
Settlement threshold$10.00
Max settlement delay3,600 seconds (1 hour)
Settlement parameters can be customized on Enterprise plans. Contact the AgentWallex team for details.

Direct Transactions

For direct on-chain payments (not x402), AgentWallex charges:
TypeFee
Transaction signingNo platform fee
Network gasPass-through (paid by agent wallet)
Wallet creationFree
Policy evaluationFree
AgentWallex does not add a platform fee on top of direct transactions. You only pay the blockchain network gas fee, which is deducted from the agent’s wallet balance.