
LTGS Official Website


LTGS General Payment System


LTGS Smart Single Management System

Welcome to the LTGS API Toolkit
Encode with our APIs

LTGS General Sale & Pay Bills APIs
Enable instant, real-time bill payments, service purchases, and utility transactions across a wide range of platforms. These APIs support integrations with telecom services, government payments.

LTGS Agency Management APIs
Manage agent registrations, profiles, performance tracking, commissions, and authentication. These APIs are crucial for onboarding and supervising LTGS-authorized agents in various locations nationwide.

LTGS Imboni Merchant APIs
Power merchant payments and transactions through the LTGS Imboni ecosystem. These APIs offer tools for merchant registration, QR payment integration, digital receipts, and transaction monitoring.

LTGS Digital Infrastructures APIs
Access foundational infrastructure services such as authentication, user access tokens, database integrations, and secure data exchange protocols. These APIs help businesses build scalable digital solutions.
General Sale Pay Bills
Initiate a Payment Request (Payload Sample)
{
"Sale_Reference_ID": "LTGSINV_230624_001",
"Customer_KYC_ID": "1199999999999999",
"Phone_Number": "0788123456",
"Email_Address": "john@example.com",
"Services_Name": "Water Bill - May 2025",
"Total_Amount_to_Pay": 15000,
"Callback_URL": "https://partner.com/callback"
}
Powered by | LTGS RWANDA PLCCallback Notification (After Payment)
{
"Sale_Reference_ID": "LTGSINV_230624_001",
"Payment_Status": "PAID",
"Payment_Channel": "MTN MoMo",
"Payment_Ref_ID": "MTN_456789123",
"Total_Amount_Paid": 15000,
"Paid_On": "2025-06-16 13:20:45"
}
Powered by | LTGS RWANDA PLC$data = json_decode(file_get_contents("php://input"), true);
if ($data["Payment_Status"] === "PAID") {
$ref = $data["Sale_Reference_ID"];
$channel = $data["Payment_Channel"];
$paid = $data["Total_Amount_Paid"];
// Connect DB and update payment status
// mysqli_query("UPDATE ltgs_general_sale_table SET Payment_Status='PAID' WHERE Sale_Reference_ID='$ref'");
}
Powered by | LTGS RWANDA PLC