integration api tutorial 2026-05-01

How to Integrate Quickpay.ge into Your Website

A step-by-step guide to accepting Georgian payments via Quickpay's REST API or hosted checkout links — no coding required for the simple option.

Getting Started

Quickpay.ge gives you two ways to accept payments:

  1. No-code checkout links — create a link in the dashboard, share it anywhere
  2. REST API — programmatic payment creation for custom integrations

Option 1: Checkout Links (5 minutes)

  1. Log in to your dashboard at app.quickpay.ge
  2. Go to Checkout LinksNew Link
  3. Set the amount, optional expiry, and max uses
  4. Copy the qpy.ge/p/YOUR_SLUG link 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

  1. Switch off test mode in Settings → Payment Mode
  2. Add your gateway credentials (BOG, TBC, etc.) in Gateways
  3. Test with a small live transaction
Need help? Contact us at [email protected].

Ready to start accepting Georgian payments? Sign up free →