Developers / Webflow

Paste Pay Link / Embed SDK

No plugin install. Create an invoice from www.aurapayglobal.com/dashboard?tab=developers, then paste the hosted pay link or drop in https://app.aurapayglobal.com/sdk.js.

Option A: paste pay link

After POST https://api.aurapayglobal.com/api/v1/invoices, share checkoutUrl as a button, text link, or Webflow embed:

<a href="https://pay.aurapayglobal.com/pay/PR-XXXXXX">
  Pay with AuraPay
</a>

Option B: embed checkout modal

In Webflow: Add → Embed, paste this snippet, then publish. Replace PR-XXXXXX with the invoice id from the API.

<script src="https://app.aurapayglobal.com/sdk.js"></script>
<button onclick="AuraPay.checkout({ 
  invoiceId: 'PR-XXXXXX', 
  onSuccess: (data) => console.log('Paid:', data.txHash),
  onClose: () => console.log('Modal closed')
})">
  Pay with AuraPay
</button>

Confirm fulfillment from the signed payment.confirmed webhook. See 5-minute quickstart for HMAC verification.

Official SDK source on GitHub