Facilitator URL
One endpoint for every chain. Point your x402 client here.
Full x402 v2 support for Avalanche C-Chain. Sub-second finality with enterprise-grade infrastructure.
Indexed stats provide historical context even without live streaming.
Stats indexed via x402scan. Indexed data may lag live settlements.
Buyers pay on Avalanche. Dexter verifies the x402 payment, signs the receipt, and settles to the seller on Avalanche.
Everything you need to accept x402 payments on Avalanche.
Full v2 support on Avalanche C-Chain with chain-native receipts.
Transactions finalize in under 1 second with no probabilistic confirmation.
One endpoint shared across every supported chain.
Dexter sponsors AVAX fees, buyers only need USDC.
Use the same facilitator endpoint everywhere.
One endpoint for every chain. Point your x402 client here.
Follow the integration guide and migration notes for x402 v2.
Open DocsLive status, settlement metrics, and chain coverage in one view.
Open DashboardDrop this into your stack and start collecting payments.
npm i @dexterai/x402import { createX402Server } from '@dexterai/x402/server';
const server = createX402Server({
payTo: 'YourAvalancheAddress',
network: 'eip155:43114',
facilitatorUrl: 'https://x402.dexter.cash',
});
const requirements = await server.buildRequirements({
amountAtomic: '30000',
resourceUrl: '/api/paid-endpoint',
});
res.setHeader('PAYMENT-REQUIRED', server.encodeRequirements(requirements));
res.status(402).end();