Q Payment Gateway Integration Demo

Sample Product Checkout

Premium T-Shirt

High-quality cotton t-shirt with custom design

₦5

Integration Examples

Simple Button
Custom Integration

Simple Button Integration

Just add the script and create a button with data attributes. Q handles everything else!
<!-- Include Q Payment SDK -->
<script src="https://api.qqweb.net/static/js/q-pay.js"></script>

<!-- Initialize Q Payment -->
<script>
    window.Q_PAY_CONFIG = {
        publicKey: 'YOUR_PUBLIC_KEY',
        baseUrl: 'https://api.qqweb.net'
    };
</script>

<!-- Add Payment Button -->
<button class="q-payment-button"
        data-amount="5000"
        data-email="customer@example.com"
        data-callback-url="https://api.qqweb.net/api/gateways/payments/example/1"
        data-reference="ORDER123"
        data-meta='{"order_id": "123"}'>
    Pay with Q
</button>