Merchant360 · Payment Links

Payment link demo

Create a shareable, hosted pay page with a single API call. Fill in an amount, click Create, and open the link to see exactly what your customer would get. Test mode — no money moves.

Bill a customer

The whole integration

// One call on your server mints a shareable hosted pay page:
const res = await fetch("https://cygma.cloud/api/m360/v1/payment-links", {
  method: "POST",
  headers: { Authorization: "Bearer " + SECRET_KEY, "Content-Type": "application/json" },
  body: JSON.stringify({
    amount: 2500,                 // $25.00, in cents
    description: "Consulting — 1 hour",
    customer: { email: "jane@acme.com" },
  }),
});
const link = await res.json();
// link.url  ->  https://cygma.cloud/pay/…   (send by email, SMS, or QR)

Full reference at the Payment Links docs. See every tool on the examples page.

© 1998–2026 Electronic Payments, Inc. Test mode.