Logo Lanfrica

blessedjasonmwanza/MoneyUnify

Domain:

digital infrastructuresocioeconomic

Record type:

software
Creator:
ble
Host:
MoneyUnify - A Simplified USSD Mobile Money Payments API that allows you to collect and disburse money from and to your customers using various mobile money network providers, in one place. Used in Africa and around the world for online Payments. Supports MTN Mobile Money, AirtelMobile Money, and Zamtel Mobile Money. # MoneyUnify Payments API Library - Documentation The MoneyUnify is a developer-friendly API Library plugin to accept payments, instant transfers, split payments, send payouts, and manage your startup business easily. **MoneyUnify** allows you to easily Validate your ideas with confidence and supports mobile money payments for all network operators πŸš€ - Documentation for all programming languages can be accessed HERE --- ## Setup - Create an account on MoneyUnify - Login and create your startup business from the businesses section. - Grab your Auth key and follow the documentation to begin collecting repayments using any programming language of your choice. - **No** need for bulk **KYC**. πŸš«πŸ“ - Customer support is available via - πŸ“ž WhatsApp πŸ€™πŸΎ - **install Settlements and withdraws** through the API Dashboard to all mobile networks 🌍 - Collect Money from All 3 networks; `MTN`, `Airtel`, and `Zamtel` instantly. πŸš€ ## πŸ’Έ Example: Request a Payment ```js fetch("api.moneyunify.one", { method: "POST", headers: { "Content-Type": "application/x-www-form-urlencoded", "Accept": "application/json" }, body: new URLSearchParams({ from_payer: "09xxxxxxxx", amount: "1", auth_id: "pub_69b9y3n0h0ydbq" }) }) .then(res => res.json()) .then(data => console.log(data)) .catch(err => console.error(err)); ```` ### Example Response ```json { "message": "Transaction Initiated Successfully", "data": { "status": "initiated", "amount": 1, "transaction_id": "sPX215101815432505", "charges": 0.035, "from_payer": "260971xxxxxxx" }, "isError": false } ``` --- ## πŸ” Example: Verify a Payment ```js fetch("api.moneyunify.one", { method: "POST", headers: { "Content-Type": "application/x-www-form-urlencoded", "Accept": "application/json" }, body: new URLSearchParams({ transaction_id: "rp_vd89gdn10d1", auth_id: "pub_69b9y3n0h0ydbq" }) }) .then(res => res.json()) .then(data => console.log(data)) .catch(err => console.error(err)); ``` ### E …