ELQR (in) new

Bank transfer (via client ID, phone number, or bank number).

CountryKyrgyzstan
CurrencyKGS (Kyrgyzstani Som)
Method typep2p
DirectionPay-in
Integration typeWidget
Transfer typeBank transfer (via client ID, phone number, or bank number)
Account number formatBank account number
Limits300 - 150 000 KGS

1. Payment Flow

  1. Open widget on merchant page

  2. Mobile: bank selected, opened on mobile device, “Proceed to payment”** button → tapping opens banking app via deep link

  3. Desktop: show a QR code + instructions → user scans with mobile banking app

  4. User confirms the payment in their banking app.

  5. Widget redirects user to your successUrl or failUrl.

2) Integration Options

2.1 Multi-widget (User selects bank)

Let users pick their bank from a list.

Request Example

{
  "amount": 100,
  "currency": "KGS",
  "invoiceId": "YOUR_INVOICE_ID",
  "clientId": "YOUR_CLIENT_ID",
  "lang": "RU",
  "successUrl": "https://example.com/success",
  "failUrl": "https://example.com/fail",
  "backUrl": "https://example.com/back",
  "multiWidgetOptions": {
    "elqrBanks": ["mbank", "bakai", "kicb"]
  },
  "type": "elqr"
}

Response Example:

{
  "id": "3730d2bc-61fc-4e29-8a04-d2d81c19a26d",
  "status": "new",
  "type": "elqr",
  "url": "https\://widget.example.com/3730d2bc-61fc-4e29-8a04-d2d81c19a26d"
}

2.2 Predefined-bank (Merchant selects bank)

Predefined: the merchant selects the bank, and the user will only see the payment method through the selected bank.

Request Example:

{
  "amount": 100,
  "currency": "KGS",
  "invoiceId": "YOUR_INVOICE_ID",
  "clientId": "YOUR_CLIENT_ID",
  "lang": "RU",
  "successUrl": "https://example.com/success",
  "failUrl": "https://example.com/fail",
  "backUrl": "https://example.com/back",
  "multiWidgetOptions": {
    "elqrBanks": ["bakai"]
  },
  "type": "elqr"
}

Response Example:

{
  "id": "3730d2bc-61fc-4e29-8a04-d2d81c19a26d",
  "status": "new",
  "type": "elqr",
  "url": "https://widget.example.com/3730d2bc-61fc-4e29-8a04-d2d81c19a26d"
}

2.3 Bank Aliases

Use these values in multiWidgetOptions.elqrBanks:

bakai, mbank, kicb, odengi, demir, megapay

Feel free to reach out to our support team if you have any questions or need assistance!

API Documentation