Getting Started
Quickpay.ge gives you two ways to accept payments:
- No-code checkout links — create a link in the dashboard, share it anywhere
- REST API — programmatic payment creation for custom integrations
Option 1: Checkout Links (5 minutes)
- Log in to your dashboard at
app.quickpay.ge - Go to Checkout Links → New Link
- Set the amount, optional expiry, and max uses
- Copy the
qpy.ge/p/YOUR_SLUGlink and share via WhatsApp, Instagram, or email
Option 2: REST API
Create a payment with a POST request:
``bash
curl -X POST https://api.quickpay.ge/v1/payments \
-H "Authorization: Bearer qpk_live_..." \
-H "Content-Type: application/json" \
-d '{
"amount_tetri": 5000,
"description": "Order #123",
"customer_name": "Giorgi Beridze",
"customer_email": "[email protected]",
"idempotency_key": "order_123",
"return_url": "https://yoursite.ge/thank-you"
}'
`
The response includes a payment_url` — redirect your customer there to complete payment.
Supported Gateways
Your customers can choose from:
- BOG Card (Visa/Mastercard)
- TBC Card
- BOG Installment
- TBC Installment
- Credo Installment
- Keepz (QR / Open Banking)
- Bank Transfer
- Cash on Delivery
Going Live
- Switch off test mode in Settings → Payment Mode
- Add your gateway credentials (BOG, TBC, etc.) in Gateways
- Test with a small live transaction