Built for merchants who want the benefits of crypto without the complexity
Support for 200+ cryptocurrencies across 10+ blockchains. Your customers pay with their preferred coin.
Automatic conversion to stablecoins (USDC/USDT). No exposure to crypto price fluctuations.
Non-custodial architecture. We never hold your funds. Bank-grade encryption and fraud prevention.
Clean REST API, comprehensive webhooks, and real-time monitoring. Everything you need to build production-ready crypto payments.
Built-in rate limiting and request validation
Instant notifications for all payment events
Track conversions and optimize your funnel
// Initialize payment
const payment = await web3pay.create({
amount: 100.00,
currency: 'USD',
successUrl: '/success'
});
// Redirect to widget
window.location.href = payment.widgetUrl;
// Handle webhook
onPaymentComplete((data) => {
console.log('Received:', data.amount);
});Clean REST API, comprehensive webhooks, and real-time monitoring. Everything you need to build production-ready crypto payments.
Built-in rate limiting and request validation
Instant notifications for all payment events
Track conversions and optimize your funnel
// Initialize payment
const payment = await web3pay.create({
amount: 100.00,
currency: 'USD',
successUrl: '/success'
});
// Redirect to widget
window.location.href = payment.widgetUrl;
// Handle webhook
onPaymentComplete((data) => {
console.log('Received:', data.amount);
});