You can easily send and receive money from other users with few clicks or by scanning a QR code
You have the possibility to charge your account balance either by a credit card or via CashPlus
Pay the services you want with YouCan Pay and receive the payment on your account too
You Can easily send a payment request to another user with the exact amount and a personalized message of your choice
Fast and easy
integration
Multiple themes
24/7 support
Track your earnings in one dashboard
We offer simple payment alternatives to allow for the "unbanked" users to make payments in their local currency just by sending and receiving funds in CASH through CashPlus agencies.
We have strategies in place that allow online businesses to accept transactions with all types of credit cards.
Accept payments through any method with QR code- based payment interface for simple, secure and fast transactions.
No setup fees
No monthly fees
Pay and get paid as you go
We offer volume discounts for local brands, and sellers exceeding $50,000 in monthly sales.
Using contemporary tools, you can quickly build production-ready integrations. YouCan Pay enables you to spend less time on system maintenance and more time on the product and the customer experience.
<script src="https://youcanpay.com/js/ycpay.js"></script>
<div id="error-container"></div>
<div id="payment-container"></div>
<button id="pay">Pay</button>
<script type="text/javascript">
const ycPay = new YCPay('pub_key', {
formContainer: '#payment-container',
});
// render the form
ycPay.renderAvailableGateways();
// start the payment on button click
document.getElementById('pay').addEventListener('click', function() {
// execute the payment
ycPay.pay(tokenId)
.then(successCallback)
.catch(errorCallback);
})
function successCallback(response) {
//your code here
}
function errorCallback(response) {
//your code here
}
</script>