Global Payments

A fully integrated suite for payments.

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.

Pay NextGen Tech $142.50
Or pay with card
Card number
MM / YY
CVC

Optimized for conversion

Our platform dynamically adapts to your customer's device and location to offer the most relevant payment methods, maximizing your authorization rates.

135+ Currencies

Present prices in local currencies to buyers globally. We handle the conversions, you get paid in your preferred currency.

Local Payment Methods

Turn on iDEAL, Bancontact, Alipay, and dozens of other local payment methods directly from the dashboard without writing new code.

Dynamic 3D Secure

We automatically apply 3D Secure authentication only to high-risk transactions, reducing friction while remaining compliant.

Integration takes minutes, not months.

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 Documentation
server.js
const 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,
});