OpenFinance protocol analysis, statement and transaction APIs, and authorized data integration for the Simbank neobank.
Simbank is the mobile-first neobank operated by Open Joint-Stock Company "Dos-Kredobank" (License of the National Bank of the Kyrgyz Republic No. 037), launched in 2024 in partnership with Fintech Farm. We deliver custom API integrations that surface its valuable financial data — VISA card balances, soms-denominated transactions, deposit positions (up to 14% APY), Piggy Bank savings, installment plans, and utility payment history — through clean, OpenBanking-style endpoints.
OAuth-style token issuance, OTP relay, and device-fingerprint replay analysis so partner systems can sign in once and refresh sessions without re-prompting end users. Designed for back-office reconciliation and B2B treasury dashboards rather than consumer use.
Paginated transaction export filtered by date range, MCC, merchant geo-location, payment method (QR, card, P2P, parking, utility) and amount. Outputs match Simbank's in-app spending analytics — including tags, notes, and "purchase geography" — for use in accounting and travel-expense systems.
Programmatic equivalent of the in-app "order a statement" flow: request a signed PDF statement, an XML/JSON ledger, or a year-end summary. Useful for visa applications, mortgage proofs, and ERP statement-import jobs.
Read remaining credit limit, grace-period clock, monthly fee accruals (e.g. 2.24% per month installment fee), and category-based cashback (up to 20% on cinema, dining, travel). Lets risk and finance teams reconcile credit utilization without scraping the UI.
Pulls open Simbank deposits with annual rates up to 14%, current Piggy Bank balances at 7% APR, top-up history, and early-withdrawal events. Maps cleanly onto an OpenFinance "savings account" object for portfolio aggregators.
Exposes the in-app subscription manager (Netflix, Apple, YouTube, etc.) and the "My Home" utility-bill QR scan history. Convenient for household budget apps that need a single transactional source of truth.
Below is the structured data Simbank holds today — derived from its in-app screens — and how each row maps to a typical OpenFinance use case. We make these surfaces available through stable, versioned endpoints rather than fragile UI scrapes.
| Data type | Source screen / feature | Granularity | Typical use |
|---|---|---|---|
| Card account profile | "My Card" — VISA debit/credit hybrid | Card number masked, IBAN, status, limits | Account aggregation, treasury dashboards |
| Transactions | Spending analytics, payment history | Per-transaction: amount (KGS/USD/EUR), MCC, merchant, geo, tag, note, reaction emoji | Reconciliation, expense reports, AML monitoring |
| Credit limit & grace period | Credit card screen (up to 200,000 soms) | Outstanding principal, available limit, grace-end date | Risk control, credit scoring uplift |
| Installment plans | Installment service (up to 24 months, 2.24%/mo) | Schedule, paid/remaining principal, fee accruals | Cash-flow forecasting, accounting amortization |
| Cashback ledger | Up to 20% category cashback | Per-transaction earned + pending payout | Loyalty analytics, marketing attribution |
| Deposits / Piggy Bank | Deposit accounts up to 14% APY, Piggy Bank 7% | Principal, accrued interest, term, top-up history | Wealth management, savings goal tracking |
| QR & utility payments | "My Home" QR scan, parking, traffic fines | Receipt, biller, period, paid amount | Household budgeting, government-services audit |
| Transfers & P2P | Card-to-card, "Shake to pay", split bills | Sender, receiver, amount, attached card/emoji | Social commerce analytics, AML signals |
| Subscription registry | In-app subscription manager | Service name, status, next-charge date | Subscription dashboards, fraud detection |
A Bishkek-based retail chain needs daily Simbank transactions imported into its ERP. We expose a /transactions?from=YYYY-MM-DD endpoint that returns IFRS-mappable rows with VAT-relevant fields. The mapping layer matches Kyrgyz accounting conventions used in financial reporting under the local Accounting Act.
A regional PFM app aggregates Simbank, MBANK, and Optima24 cards into a single dashboard. Our connector returns OpenFinance-shaped account, transaction, and balance objects so the aggregator does not need to write per-bank parsers.
A Central Asian outsourcer pays freelancers via Simbank cards. We deliver a webhook that emits a signed payment.posted event when a payroll transfer settles, so the upstream HR system can mark invoices as paid and issue statements within seconds.
A non-bank lender requests a 12-month Simbank statement as part of underwriting. The integration calls the statement service, packages a signed PDF plus a JSON ledger, and uploads both to the lender's secure intake bucket — replacing manual screenshot uploads from end users.
Because Simbank tags purchase geography and supports multi-currency cashback, we can stream travel-flagged transactions to a corporate T&E platform with original amount, FX rate, and merchant city — eliminating manual receipt entry for trips outside Kyrgyzstan.
// Example: exchange Simbank session for an integration access token
POST /api/v1/simbank/auth/login
Content-Type: application/json
{
"phone": "+996700123456",
"otp": "428193",
"device_id": "device-uuid-v4",
"scope": ["transactions:read", "statements:read", "card:read"]
}
200 OK
{
"access_token": "eyJhbGciOi...",
"refresh_token": "rt_9d8c...",
"expires_in": 1800,
"kgs_account_id": "acct_4f2e..."
}
// Example: paged transaction export, filtered by type and date range
GET /api/v1/simbank/transactions
?account_id=acct_4f2e
&from=2026-01-01&to=2026-03-31
&type=qr,utility,p2p
&page=1&page_size=100
Authorization: Bearer <ACCESS_TOKEN>
200 OK
{
"items": [
{
"id": "txn_01H...",
"ts": "2026-03-14T09:21:13Z",
"amount": -1200.00,
"currency": "KGS",
"mcc": "5411",
"merchant": "Globus Bishkek",
"geo": {"lat": 42.87, "lon": 74.59},
"tag": "groceries",
"cashback": {"rate": 0.05, "earned": 60.00}
}
],
"next_cursor": "eyJwYWdlIjoyfQ"
}
// Example: server-to-server event signed with HMAC-SHA256
POST https://your-app.example/hooks/simbank
X-Simbank-Signature: t=1714386000,v1=8b2f...
{
"event": "installment.created",
"occurred_at": "2026-04-29T12:00:00+06:00",
"data": {
"account_id": "acct_4f2e",
"principal_kgs": 48000.00,
"tenor_months": 12,
"monthly_fee_pct": 2.24,
"first_due_date": "2026-05-29"
}
}
// Verify signature, then enqueue for downstream ledger.
Every Simbank integration we deliver is gated by explicit end-user authorization (or a written B2B mandate) and respects local Kyrgyz data-protection rules. Doscredobank operates under License of the National Bank of the Kyrgyz Republic No. 037, and from 1 January 2025 the National Bank's "On Bank Payment Cards" resolution requires processing centres servicing card operations to be physically located in the Kyrgyz Republic. Our deployment topology takes that into account: integration nodes that touch card data are hosted in-country, and only derived, non-PCI fields cross borders. We also align with general OpenBanking expectations (PSD2-style consent records, GDPR-comparable data-minimization) for clients who need to satisfy EU or EAEU partners. Sensitive fields are masked by default; PCI scope is reduced through tokenization; all access is audit-logged.
A typical Simbank integration is a four-node pipeline:
Simbank is the consumer-facing neobank brand of Doscredobank, launched in late 2024 by Fintech Farm — the same UK-based studio behind Leobank in Azerbaijan, Liobank in Vietnam, and Roarbank in India. The Kyrgyz launch was reported as Fintech Farm's fifth market, and the operator publicly celebrated reaching 100,000 active customers shortly after rollout. Primary users are urban Kyrgyz consumers in Bishkek, Osh, and surrounding regions, plus younger digital-first segments who skew toward smartphone-only banking on Android (the majority of the local market) and iOS. From an integration perspective, the buyer profile is two-sided: B2C aggregators who need a unified financial dashboard alongside MBANK and Optima24, and B2B payers (SMEs, marketplaces, payroll providers) who want webhook-driven settlement for orders, salaries, and reconciliation.
Click any thumbnail to view a larger version. These screens illustrate the Simbank surfaces we map to APIs (card, transactions, deposits, analytics, payments).
Teams that integrate Simbank often need parallel coverage of other Kyrgyz, Central Asian, and global digital banking apps. The following ecosystem peers come up frequently in scoping calls; this section lists them strictly to map the broader OpenFinance landscape, not to rank them.
We are an independent studio specializing in App interface integration, authorized API integration, and OpenBanking protocol analysis. Our team includes engineers with hands-on experience in mobile applications and fintech, and we deliver one-stop services from protocol analysis and interface refactoring to OpenData integration, third-party interface integration, automated data scripting, and full interface documentation.
To request a quote for Simbank API integration — or to bundle Simbank with MBANK, Optima24, BAKAI, DemirBank, Leobank, Liobank, Roarbank, Wise, or Payoneer — open our contact page and tell us which data surfaces (statements, balances, installments, cashback, deposits) you need.
What do you need from me?
How long does delivery take?
How do you handle compliance?
Simbank is a mobile service from Doscredobank in Kyrgyzstan. The app simplifies banking procedures and pairs a user-friendly interface with a flagship credit card. Onboarding is fast: download, register in under 3 minutes, and order a free card with delivery.
23 reasons to download — feature highlights:
Open Joint-Stock Company "Dos-Kredobank". License of the National Bank of the Kyrgyz Republic No. 037.