Account protection
Strong authentication and risk-aware account controls.
Make and receive digital payments seamlessly.
Secure financial infrastructure for everyday payments and business operations.
One financial platform
Pay, collect, sell, reconcile, and build from one secure account.
Scan, transfer, top up, and cash out.
Tuition, boarding, and student receipts.
Shop and sell in one marketplace.
Ticket sales and QR entry.
Campaigns and traceable giving.
Cash pickup through agents.
Book rooms, pay online, and check in by QR.
Paid competition votes with verified results.
Checkout APIs and webhooks.
Everyday commerce
Businesses manage sales and stock in TenkiOps. Customers scan a verified TenkiPay QR, confirm the business and amount, then pay securely from their wallet.
Sell by product and quantity with every payment recorded.
Manage products, stock, checkout, and wallet collection.
Track medicine stock and collect payments with clear records.
Scan a business, product, invoice, ticket, or checkout QR.
For businesses
See what came in, what went out, and what needs attention from one financial workspace.
Explore business tools
Connect sales, inventory, fees, orders, deliveries, service billing, and TenkiPay collection in one controlled workspace.
Create a ticketed event or transport service, publish a Pay ID and QR code, manage capacity, and issue a secure digital ticket after payment.
TenkiPass
Event ticket
Scan to verify
Organizers create participants and set a price per vote. Supporters use the public link or QR code, and only successful TenkiPay payments enter the official result.
Add the event, vote price, schedule, and participants.
Publish one verified link and QR code across every channel.
Track paid votes, participant ranking, and revenue in real time.
Businesses publish storefronts, categories and live stock. Customers discover products, order from a store and pay through TenkiPay Checkout.
TenkiMarkitProducts
Stores
Delivery
Connect an e-commerce store, marketplace, or custom application. Create a fixed payment session from your server, then let the customer sign in on the web or scan with their already signed-in TenkiPay app.
Create a checkout session
Server-side · Node.js 18+
import crypto from 'node:crypto';
const path = '/api/v1/merchant/checkout/sessions';
const body = JSON.stringify({
merchant_reference: 'ORDER-1001',
amount: '249.50',
currency: 'SLE',
success_url: 'https://merchant.test/paid',
cancel_url: 'https://merchant.test/cart'
});
const timestamp = new Date().toISOString();
const signature = crypto
.createHmac('sha256', process.env.TENKIPAY_SECRET_KEY)
.update([timestamp, 'POST', path, body].join('\n'))
.digest('hex');
const response = await fetch(`https://me.tenkipay.com${path}`, {
method: 'POST',
headers: {
'Content-Type': 'application/json',
'X-TenkiPay-Key': process.env.TENKIPAY_PUBLIC_KEY,
'X-TenkiPay-Timestamp': timestamp,
'X-TenkiPay-Signature': signature,
'Idempotency-Key': 'checkout:ORDER-1001:v1'
},
body
});
const { data } = await response.json();
res.redirect(303, data.checkout_url);
1. Create
Sign the server request with the amount, order reference, return URLs, and one idempotency key.
2. Approve
The customer securely signs in on TenkiPay Checkout or approves from the TenkiPay app.
3. Confirm
Verify the signed webhook and retrieve ACSC before fulfilling the order once.
Schools publish tuition, boarding or hostel, transport, meals, and other charges with their own names and prices. Parents pay securely and receive a traceable receipt.
School Fees
Boarding charge
School code: SCH-1042
Amount due
SLE 1,250.00
Faith organizations, NGOs, charities, and community groups can publish a campaign with fixed or open contributions. Supporters pay through TenkiPay and receive an immediate, traceable receipt.
TenkiGiveCommunity initiative
Secure contributions collected directly into the organization’s TenkiPay account.
Raised
SLE 24,850
Supporters
136
Target
SLE 50,000
Customers can pay from their wallet or visit a TenkiPay agent for cash-in, cash-out, remittance, assisted payments, and TenkiPass services.
Find a cash agentRole-based access, strong authentication, auditable activity, reconciliation, and operational controls are built into the platform.
Strong authentication and risk-aware account controls.
Role-based access for teams, approvals, and workflows.
Traceable activity with practical reconciliation tools.
Clear visibility for finance, support, risk, and operations.
Open a wallet or create a business account on TenkiPay.