Playground — try the interface live
The same interface other systems get. Choose JS (a real checkout modal) or REST (a live runner against the API) — for a one-time charge or a monthly subscription. The code is copy-paste ready for another system.
🛍️ Button on the customer's site (live)
The card is entered only on the provider's page (PCI SAQ-A). The modal is real — try a test card.
The code to embed in another system
<script src="https://api.payways.doogree.co.il/payways.js"></script>
<script>
PayWays.checkout({
apiBase: "https://api.payways.doogree.co.il",
pk: "pk_live_xxx", // browser-safe, origin-locked
amount: 149,
description: "Order #1042",
customer: { fullName: "Sample customer", email: "[email protected]" },
onResult: r => { if (r.status === "PAID") showThankYou(); }
});
</script>