Embed demo — PAYWAYS.js

This is how it looks on the customer's own site: a pay button → secure checkout in a modal (with "Powered by PAYWAYS") → result returns to the page. The card is entered only on the provider's page (SAQ-A).

🛍️ The customer's store (demo)
Premium plan
The code the customer embeds:
<script src="https://api.payways.doogree.co.il/payways.js"></script>
<script>
  // 100% client-side — only your publishable key (pk_), no server needed.
  PayWays.checkout({
    apiBase: "https://api.payways.doogree.co.il",
    pk: "pk_live_xxx",           // browser-safe, origin-locked
    amount: 149, description: "Premium plan",
    onResult: r => { if (r.status === "PAID") showThankYou(); }
  });
</script>