Easypay Integration Demo

See how easy it is to integrate Easypay into your website

PREMIUM PACKAGE

Premium Website Package

Complete website solution with hosting and support

৳ 510.00
incl. VAT

How to Integrate

Add this code to your website:

<!-- Easypay SDK -->
<script src="/js/easypay-sdk.js"></script>

<!-- Payment Button -->
<button id="payButton">Pay Now</button>

<!-- Initialize Easypay -->
<script>
  const easypay = new Easypay();
  document.getElementById('payButton').onclick = function() {
    easypay.createPayment({
      amount: 510.00,
      method: 'bkash',
      description: 'Premium Package'
    }).then(data => {
      if (data.success) {
        window.location.href = data.data.payment_url;
      }
    });
  };
</script>
View Full Documentation