We provide protocol analysis for mobile wallets and digital lending apps without relying on platform black boxes, reconstruct authorization flows, and implement APIs based on public/open data, covering balance queries, QR/offline payments, cross-border and merchant acquiring scenarios.
All implementations are based on client authorization or publicly available interfaces, adhering to local regulations (e.g., Bank/Regulator requirements) and privacy minimization principles. NDA and compliance guidance are provided when needed.
{
'method': 'POST',
'path': '/api/v1/truemoney/transactions',
'headers': {
'Content-Type': 'application/json',
'Authorization': 'Bearer '
},
'body': {
'wallet_id': 'user_phone_or_id',
'from_date': '2025-10-01',
'to_date': '2025-10-31',
'type': 'PAYMENT|TOPUP|LOAN',
'page': 1,
'page_size': 100
}
}
Response {
'status': 'OK',
'transactions': [
{ 'id':'TXN001', 'date':'2025-10-02', 'amount':-120.50, 'desc':'7-Eleven', 'balance_after': 879.50 },
{ 'id':'TXN002', 'date':'2025-10-05', 'amount':500.00, 'desc':'Bank transfer', 'balance_after':1379.50 }
],
'next_page': 2
}
POST /webhook/truemoney/qr
Content-Type: application/json
{
'merchant_id':'M12345',
'order_id':'ORD789',
'amount':250.00,
'status':'SUCCESS',
'tm_ref':'TMREF20251018'
}
// We will provide signature verification examples and replay-attack protection measures
We can package results as Docker containers, cloud functions, or integrate directly into your existing backend.
We are a studio focused on app protocol analysis and compliant API integration, with members from mobile payments, banking and cloud services. With years of experience in finance, we are familiar with wallet and lending product interfaces and regulatory requirements across multiple markets, providing reusable API implementations and compliance guidance.
TrueMoney is Thailand's leading mobile payments and digital wallet platform, offering wallet top-ups, transfers, QR payments, bill payments, mobile recharges, and digital lending products in partnership with financial institutions. It supports biometric login and multi-layer security, and interoperates with offline merchants (such as 7-Eleven, Lotus's) and international merchant networks.
(The above is a public feature summary for technical integration and solution design reference only.)