Sign in to your NextGen dashboard
Don't have an account?
Request access
Enter your email to get a reset link
Bring together everything that’s required to build websites and apps that accept payments and send payouts globally. NextGen’s products power payments for online and in-person retailers, subscriptions businesses, software platforms and marketplaces, and everything in between.
Our platform dynamically adapts to your customer's device and location to offer the most relevant payment methods, maximizing your authorization rates.
Present prices in local currencies to buyers globally. We handle the conversions, you get paid in your preferred currency.
Turn on iDEAL, Bancontact, Alipay, and dozens of other local payment methods directly from the dashboard without writing new code.
We automatically apply 3D Secure authentication only to high-risk transactions, reducing friction while remaining compliant.
Use our customizable, drop-in UI components to create a secure, conversion-optimized checkout experience, or build your own custom flow using our powerful APIs.
View API Documentationconst nextgen = require('nextgen')('sk_test_123'); // Create a PaymentIntent with the order amount and currency const paymentIntent = await nextgen.paymentIntents.create({ amount: 14250, currency: 'usd', automatic_payment_methods: { enabled: true, }, }); res.send({ clientSecret: paymentIntent.client_secret, });