Browse 12+ integrations — WooCommerce, WHMCS, Learnova, and moreView directory →

Start accepting payments in Zimbabwe in minutes.

One API. Every payment method. No redirects.

Integration paths

Start with your stack

OpenAPI & Postman

Official libraries

Node and PHP are full server SDKs. The libraries below are honest about scope — Python, Go, and Flutter currently ship webhook signature verification only; a full client is on the roadmap, not yet released.

LibraryScope
Watenga.jsEmbedded checkout widget + Elements
Node (@watenga/node)Full server SDK
PHP (watenga-php)Full server SDK
TerminalPOS integrator SDK
Mobile (React Native)Mobile SDK
PythonWebhook verification only — full SDK coming soon
GoWebhook verification only — full SDK coming soon
FlutterWebhook verification only — full SDK coming soon

Quick start

Add Watenga.js to your site in three lines:

markup
<script src="https://js.watenga.africa/v1/watenga.js"></script>
<div id="pay"></div>
<script>
  Watenga('pk_test_your_client_id').mount('#pay', {
    amount: 25.00, currency: 'USD', reference: 'INV-001',
    onSuccess: (txn) => console.log(txn)
  });
</script>