Facilitator URL
One endpoint for every chain. Point your x402 client here.
Full x402 v2 support for SKALE Network. Zero gas fees with high-throughput EVM-compatible settlement.
Buyers pay on SKALE. Dexter verifies the x402 payment, signs the receipt, and settles to the seller on SKALE — with zero gas fees.
Everything you need to accept x402 payments on SKALE.
Full v2 support on SKALE Network with chain-native receipts.
SKALE eliminates gas costs entirely — buyers and sellers pay nothing for on-chain settlement.
One endpoint shared across every supported chain.
EVM-compatible chain with high TPS and instant finality.
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: 'YourSkaleAddress',
network: 'eip155:1482601649',
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();