Connect M Credit accounts, e-loans, BNPL and Magic Card data to your stack — under Mongolian compliance
M Credit, operated by Solomon Investments NBFC LLC since 2023, is one of Mongolia's most active electronic-loan platforms, available across all 21 provinces. We help fintech teams, NBFC partners, and ERP vendors lift the data trapped inside the M Credit app — disbursements, repayment schedules, bonus-point ledgers, and the new Magic Card ledger — into clean, OpenFinance-style JSON your back office can consume.
Data available for integration
Below is the inventory we typically extract from the M Credit app surface (mn.mcredit on Android, the matching iOS build, and the supporting Solomon Investments NBFC backend). Field names are normalised to OpenFinance-friendly conventions; native Mongolian-language labels are preserved as side-by-side properties when needed.
| Data type | Source screen / feature | Granularity | Typical use |
|---|---|---|---|
| User profile & KYC | Sign-up & ID verification flow | Per-user (registry ID, phone, address province) | Onboarding sync, fraud rules, AML screening |
| E-loan agreements | "E-loan" tab — active and history | Per agreement: principal, APR, tenor, status | Risk dashboards, NBFC portfolio reporting |
| Repayment events | Repayment / "early repay" screen | Per transaction: date, amount, channel | Reconciliation with banking partners |
| Purchase-loan / BNPL schedules | "Purchase loan" tab | Per item: 4-instalment plan, merchant, extensions | Merchant settlement, BNPL analytics |
| Magic Credit Card transactions | Magic Card statement view | Per authorisation & settlement | Card-level fraud monitoring, expense management |
| Bonus-point ledger | Loyalty / bonus screen | Per accrual & redemption | Loyalty programmes, retention modelling |
| Loan calculator output | Pre-application calculator | Per scenario (e.g. 500,000 MNT @ 36% / 3m → 530,295.54) | Pricing comparators, partner quote APIs |
| Notifications & agreement PDFs | In-app inbox, signed contracts | Per event / per document | Audit trail, compliance archiving |
Typical integration scenarios
1. NBFC portfolio dashboard
A Mongolian credit-bureau partner needs near-real-time visibility into outstanding e-loans by province. Our connector pulls e-loan agreement records and pushes them to a daily ETL keyed by registry ID. The data lands in BigQuery or ClickHouse, where APR distribution, par-30 rates, and concentration in the 21 provinces become readable in a few SQL queries — without touching the operational M Credit core.
2. BNPL merchant settlement
For an e-commerce partner that originates M Credit purchase-loan agreements at checkout, we expose a BNPL settlement webhook. Each instalment event (paid, missed, extended) is signed and pushed to the merchant's reconciliation queue, mapping the M Credit agreement ID back to the merchant's order ID and SKU. This solves the classic "did the customer actually pay back instalment 2 of 4?" problem.
3. Magic Card expense feed for SMEs
SMEs whose owners use the new Magic Credit Card want their card transactions to flow into corporate accounting tools. We deliver an OpenFinance-style card transaction feed with merchant category, MCC, amount, and currency, ready to map into 1C, Microsoft Dynamics, or Mongolian-localised ERPs.
4. Risk & bonus-points modelling
Underwriters want to use the M Credit on-time-repayment bonus ledger as a feature in their credit model. We expose bonus events as a time-series, including redemption-to-rate-discount mapping, so risk teams can quantify how loyalty status correlates with default. The output plugs directly into a feature store (Feast, Tecton).
5. Compliance & audit archive
Auditors require signed copies of every loan agreement and every repayment confirmation. Our pipeline pulls the in-app PDF agreements and stores them in WORM-compliant object storage with retention metadata, satisfying both internal audit and Bank of Mongolia credit-information expectations.
Technical implementation
Login & token refresh
// Bind an M Credit user under documented authorization
POST /api/v1/mcredit/auth/login
Content-Type: application/json
{
"phone": "+976XXXXXXXX",
"device_id": "b9f2-7d3a-..."
}
200 OK
{
"access_token": "eyJhbGci...",
"refresh_token": "rt_...",
"expires_in": 1800,
"user_id": "mcr_0001234"
}
E-loan statement export
POST /api/v1/mcredit/eloan/statement
Authorization: Bearer <ACCESS_TOKEN>
{
"user_id": "mcr_0001234",
"from_date": "2026-01-01",
"to_date": "2026-04-30",
"format": "json"
}
Response (truncated)
{
"agreements": [{
"agreement_id": "EL-2026-AB12",
"principal_mnt": 500000,
"apr_pct": 36,
"tenor_months": 3,
"monthly_payment_mnt": 176765.18,
"status": "active"
}],
"next_cursor": null
}
BNPL purchase-loan webhook
// Solomon Investments NBFC posts to your endpoint
POST https://your-merchant.example/webhook/mcredit
X-Mcredit-Signature: sha256=...
{
"event": "instalment.paid",
"agreement_id": "PL-2026-77F1",
"merchant_order_id": "ORD-90211",
"instalment_no": 2,
"instalments_total": 4,
"amount_mnt": 125000,
"extensions_used": 0,
"occurred_at": "2026-05-02T08:14:00+08:00"
}
// Reply 2xx within 5s; we retry with exponential backoff on non-2xx
Error handling & idempotency
Endpoints return JSON errors with stable codes (MCR_AUTH_EXPIRED, MCR_RATE_LIMITED, MCR_KYC_INCOMPLETE). All write paths accept an Idempotency-Key header, so retried instalment confirmations cannot double-post. Read endpoints support cursor-based paging via next_cursor; long statement windows are streamed with chunked transfer encoding to avoid 30s gateway timeouts.
Compliance & privacy
Mongolian regulatory alignment
M Credit is a non-banking financial institution under the supervisory perimeter of the Bank of Mongolia (Mongol Bank), including its Credit Information Unit. Any integration we build respects the Mongolian Law on Protection of Personal Data effective 1 May 2022, plus the 2024–2028 Strategic Plan of the Ministry of Digital Development that strengthens consent records and ethical AI use across e-Mongolia services.
Security baseline (ISO 27001:2022)
M Credit has publicly adopted ISO 27001:2022 controls. Our extraction layer is designed to extend that baseline into your environment: TLS 1.2+ in transit, AES-256 at rest, key separation between identity and ledger data, secrets in an HSM-backed vault, full request and consent audit logs, and a documented data-retention schedule aligned with NBFC bookkeeping rules.
Open Banking direction
While Mongolia does not yet have a single nationwide Open Banking mandate, Golomt Bank introduced the country's first OpenBanking framework in 2020 and integrations with E-Mongolia, UBcab, Tapatrip and others have followed. Our M Credit integrations are designed in the same spirit: consent-first, scoped tokens, revocable access, and OAuth-friendly endpoints so that future regulatory harmonisation is a configuration change, not a rewrite.
Data minimisation
We only request the fields each scenario actually needs. A merchant settling BNPL instalments does not see KYC documents; a risk team does not see card PANs (only tokenised IDs). This per-scope filtering is enforced at the gateway and is auditable.
What we deliver & data flow
Deliverables checklist
- OpenAPI 3.1 specification for every M Credit endpoint we expose
- Protocol & auth flow report (token chain, device binding, signature scheme)
- Runnable Python and Node.js source for login, e-loan, BNPL, Magic Card
- Postman collection plus pytest / vitest test harness
- Data-mapping notes between Mongolian-language fields and English schema
- Compliance pack: data-flow diagram, retention matrix, consent template
Data flow / architecture
Pipeline shape (text-only):
- Client app (M Credit on Android / iOS, mn.mcredit) authenticates via the protocol layer.
- Ingestion gateway normalises the call, applies rate limits, and writes a consent log entry.
- Storage — encrypted Postgres for relational ledger; object storage for signed PDFs.
- Analytics / API output — REST + webhook fan-out to your dashboards, ERP, or risk engine.
Each hop is observable via OpenTelemetry traces and an immutable audit log, so an incident review can be answered in minutes instead of days.
Market positioning & user profile
M Credit primarily serves Mongolian retail borrowers across all 21 provinces — wage earners and small-business operators looking for short-tenor cash loans (50,000–3,000,000 MNT) and 4-instalment BNPL purchases at partner merchants. The user base skews mobile-first, Android-dominant (with full iOS parity), and digitally onboarded since 2023. With the launch of the Magic Credit Card, positioned as Mongolia's first personal credit card service, M Credit is expanding from one-off lending into ongoing card relationships — which makes their data feed strategically interesting to ERPs, accounting tools, and cross-border fintechs entering Mongolia alongside players such as Khan Bank, TDB, and Golomt Bank.
Screenshots
Click any thumbnail to view the full-resolution screenshot.
Similar apps & integration landscape
If you are scoping a Mongolia-wide data layer, M Credit rarely sits alone. The apps below define the rest of the lending and payments ecosystem most of our clients also need to talk to. We list them here purely for context — each is a respected piece of the local market, and most teams eventually want unified exports across two or three of them.
- LendMN — Mongolia's pioneering AI-credit-scoring lender, providing 24/7 instant mobile loans. Holds rich underwriting features (telco signals, repayment history) that often need to be joined with M Credit data for cross-portfolio risk views.
- Hipay — A comprehensive payment platform offering loans, insurance, investments, and international transfers. Common counterpart for wallet-balance and KYC sync alongside M Credit.
- QPay — Mongolia's interoperable QR rail, integrated with TDB, Khan Bank, Golomt, Chinggis Khaan Bank and many more. Pairs naturally with M Credit BNPL settlement reconciliation.
- Khan Bank app — The retail app of Mongolia's largest bank, serving roughly 82% of the market. Many M Credit borrowers also disburse and repay via Khan Bank rails.
- TDB Online — Trade and Development Bank's flagship retail app. Frequent counterparty for statement and transfer reconciliation in shared customers.
- Golomt Bank app — Notable for being the first Mongolian bank to introduce OpenBanking APIs in 2020; a useful design reference for any consent-first M Credit integration.
- Storepay — A 4-instalment BNPL solution comparable in spirit to M Credit's purchase-loan product; teams comparing BNPL portfolios often want unified instalment-level data.
- SendMn — A QR and remittance app, recently extended into the GLN cross-border QR network; relevant when M Credit borrowers receive funds through QR rails.
- LendDy — LendMN's BNPL extension that lets active credit-line customers buy from partner merchants; the closest direct analogue to M Credit's purchase-loan flow.
- Pocket Finance — A short-tenor digital lender popular among younger Mongolian borrowers; commonly part of cross-app credit stacks.
Users searching for any of the above will often have the same underlying question — "how do I get loan, BNPL or card data out of these apps in a consent-first, OpenFinance-friendly way?" — which is exactly what we ship.
About our studio
We are an independent technical-services studio focused on App protocol analysis and authorized API integration for fintech, payments, retail, and travel verticals. Our engineers come from banks, payment gateways, and security backgrounds; we know NBFC business logic, mobile-app reverse engineering for legitimate integration, and the field-level pragmatism it takes to ship Mongolian-language apps to English-speaking back offices.
- OpenData / OpenFinance / OpenBanking-style integrations across Asia
- End-to-end pipeline: protocol analysis → build → validation → compliance pack
- Custom Python / Node.js / Go SDKs and CI-ready test harnesses
- Source-code delivery from $300 — runnable code plus full documentation; pay after delivery upon satisfaction
- Pay-per-call API billing — call our hosted M Credit endpoints, pay only per request, zero upfront fee
Contact
To start an M Credit integration or request a quote with your scope (e-loan, BNPL, Magic Card, bonus points), please open our contact page:
Engagement workflow
- Scope confirmation: e-loan, BNPL, Magic Card, bonus points, or full coverage.
- Protocol analysis & API design (2–5 business days, scope-dependent).
- Build, internal validation, and Mongolian-language field mapping (3–8 business days).
- Documentation, OpenAPI spec, sample code, and test cases (1–2 business days).
- First delivery: typically 5–15 business days. Solomon Investments NBFC partner approvals can extend this.
FAQ
What do you need from me to start an M Credit integration?
How long does an M Credit API delivery take?
How do you handle compliance with Mongolian regulations?
Do you support pay-per-call billing instead of source code?
📱 Original app overview (appendix)
Solomon Investments NBFC LLC's M Credit app has been providing electronic loan services continuously since 2023. It saves borrowers time and effort by concluding a loan agreement remotely and establishing their loan rights, providing easy and fast loan services. To reach customers more closely, M Credit is also open to all 21 provinces of Mongolia, and has introduced the ISO 27001:2022 international standard to ensure the security of customer information.
Loan products
- E-loan — cash e-loan up to 3,000,000₮; flexible terms to extend up to 6 times; partial early repayment supported before the loan period expires.
- Purchase loan — no down payment, no interest, no fees; up to 4 instalments; payment can be extended up to 3 times.
Advantages
- Conclude a loan agreement online anytime, anywhere
- Open to 21 provinces across Mongolia
- E-loan and purchase loans in one place
- Easy and fast loan transactions
- Repay your loan in the amount you want before the loan period expires
- Collect bonus points by repaying on time and use them to reduce the interest rate and increase credit rights
- Flexible terms to extend your loan
Loan terms
- Loan amount: 50,000 MNT – 3,000,000 MNT
- Loan repayment: 3, 6, 9, or 12 months (depending on the loan amount)
- APR: 0% – 36%
Worked example
- Loan amount: 500,000 MNT
- Service fee: 0 ₮
- Loan repayment: 3 months
- APR: 36%
- Monthly payment: 176,765.18
- Interest: 30,295.54
- Total payment: 530,295.54
Your financial choice — M Credit. Contact: 72002060 · Email: support@mcredit.mn · Web: mcredit.mn