Skip to main content

MONEI Documentation

Everything you need to accept payments

Guides, references, and answers — for merchants and developers alike.

For developers

Integrate payments with the API, SDKs, and webhooks.

For merchants

Set up your account and run payments day to day.

Integrate with your platform

ShopifyWooCommerceWixAdobe CommercePrestaShopSalesforcecommercetoolsMedusaSaleorSylius

Accept the methods your customers prefer

VisaMastercardDiscoverUnionPayBizumApple PayGoogle PayPayPalMultibancoMB WAYBancontactClick to Pay
See all payment methods

Browse all documentation

For developers

Try it out

import {Monei} from '@monei-js/node-sdk';

const monei = new Monei('YOUR_API_KEY');

const payment = await monei.payments.create({
amount: 110,
currency: 'EUR',
orderId: '12345',
description: 'Test Shop',
callbackUrl: 'https://example.com/callback'
});