Simbank API integration services (Doscredobank · Kyrgyz Republic)

OpenFinance protocol analysis, statement and transaction APIs, and authorized data integration for the Simbank neobank.

From $300 · Pay-per-call available
OpenData · OpenFinance · OpenBanking · Protocol analysis

Connect Simbank accounts, statements, and credit-card data to your stack — under authorized, compliant access

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.

Account login & session APIs — Mirror the Simbank authorization flow (phone + OTP / device binding) and re-expose it as token-based REST endpoints for B2B clients.
Transaction & statement export — Pull purchase history, P2P transfers, QR payments, parking, utility "My Home" entries, and merchant tags into JSON / CSV / Excel for ERP, accounting, and reconciliation.
Card & credit-limit data — Read the up-to-200,000-soms credit limit, 62-day grace period status, installment schedules (up to 24 months), and 20% category cashback accruals.

Feature modules — what we build for Simbank

Authentication & user binding

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.

Transaction history API

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.

Statement & document service

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.

Credit, installment & cashback ledger

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.

Deposit & Piggy Bank sync

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.

Subscriptions & utility integration

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.

Data available for integration (OpenData inventory)

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 typeSource screen / featureGranularityTypical use
Card account profile"My Card" — VISA debit/credit hybridCard number masked, IBAN, status, limitsAccount aggregation, treasury dashboards
TransactionsSpending analytics, payment historyPer-transaction: amount (KGS/USD/EUR), MCC, merchant, geo, tag, note, reaction emojiReconciliation, expense reports, AML monitoring
Credit limit & grace periodCredit card screen (up to 200,000 soms)Outstanding principal, available limit, grace-end dateRisk control, credit scoring uplift
Installment plansInstallment service (up to 24 months, 2.24%/mo)Schedule, paid/remaining principal, fee accrualsCash-flow forecasting, accounting amortization
Cashback ledgerUp to 20% category cashbackPer-transaction earned + pending payoutLoyalty analytics, marketing attribution
Deposits / Piggy BankDeposit accounts up to 14% APY, Piggy Bank 7%Principal, accrued interest, term, top-up historyWealth management, savings goal tracking
QR & utility payments"My Home" QR scan, parking, traffic finesReceipt, biller, period, paid amountHousehold budgeting, government-services audit
Transfers & P2PCard-to-card, "Shake to pay", split billsSender, receiver, amount, attached card/emojiSocial commerce analytics, AML signals
Subscription registryIn-app subscription managerService name, status, next-charge dateSubscription dashboards, fraud detection

Typical integration scenarios

1. SME accounting sync to 1C / Sage

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.

2. Personal finance aggregator

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.

3. Cross-border payroll for remote workers

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.

4. Credit-bureau-grade statement export

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.

5. Travel / FX expense automation

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.

Technical implementation

Authorization & token refresh

// 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..."
}

Statement query API

// 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"
}

Webhook for credit / installment events

// 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.

Compliance & privacy

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.

Data flow / architecture

A typical Simbank integration is a four-node pipeline:

  1. Client App / browser — initiates an authorized session (OTP, device-bound).
  2. Integration gateway (in-country, Kyrgyz Republic) — handles protocol translation, rate limiting, and PCI-scope reduction.
  3. Storage / cache — short-lived encrypted store of normalized statement and balance objects, with retention windows configurable per tenant.
  4. API output / Webhook fan-out — REST endpoints for pull, signed webhooks for push, optional batch S3-style drops for accounting imports.

Market positioning & user profile

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.

App screenshots

Click any thumbnail to view a larger version. These screens illustrate the Simbank surfaces we map to APIs (card, transactions, deposits, analytics, payments).

Simbank screen 1 Simbank screen 2 Simbank screen 3 Simbank screen 4 Simbank screen 5 Simbank screen 6 Simbank screen 7 Simbank screen 8 Simbank screen 9 Simbank screen 10

Similar apps & integration landscape

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.

MBANK — Kyrgyzstan's most-downloaded finance app (3M+ Android installs); deep loan, deposit, marketplace and cashback data make a unified MBANK + Simbank pull a frequent ask.
Optima24 — The flagship app of Optima Bank, recognized by Asian Banking & Finance for "Best Mobile Banking Initiative — Kyrgyzstan"; used by SME treasury teams who also hold Simbank cards.
DemirBank Mobile — Long-standing Kyrgyz bank app supporting transfers, FX, credit-card debt management and utility payments; common counterparty in B2B reconciliation.
BAKAI — Bakai Bank's mobile platform covering cards, loans, deposits and transfers; aggregators routinely need its statement feed alongside Simbank.
Leobank (Azerbaijan) — Sister Fintech Farm neobank with 1M+ active users; integration patterns are highly transferable to Simbank, including OTP and tokenization flows.
Liobank (Vietnam) — Another Fintech Farm deployment focused on cashback-heavy credit cards; useful comparison for designing similar Simbank cashback APIs.
Roarbank (India) — Fintech Farm's Indian neobank brand, often referenced for UPI-style payment patterns that overlap with Simbank QR flows.
Wise — Multi-currency account active in 175 countries; teams routing cross-border payouts pair Wise statements with Simbank settlement events.
Payoneer — Cross-border payout provider used by Kyrgyz freelancers; common pairing for unified income reporting.
Sense Bank — Ukrainian retail bank app that shares UI/UX heritage with Fintech Farm products; useful reference for designing Simbank-compatible PFM dashboards.

About our studio

What we do

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.

  • Marketed to overseas clients, familiar with mainstream Apps' interface standards across countries
  • Compliant interface implementations aligned with local laws and privacy protection
  • Android & iOS coverage; ready-to-use API source code, docs, and test plans
  • Source code delivery from $300 — pay after delivery upon satisfaction
  • Pay-per-call API billing — access our hosted endpoints, no upfront cost

Contact

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.

Contact page

Engagement workflow & FAQ

Engagement workflow

  1. Scope confirmation — choose data surfaces (auth, transactions, statements, deposits, installments, cashback).
  2. Protocol analysis & API design (2–5 business days; depends on Simbank version coverage).
  3. Build & internal validation against in-country sandbox (3–8 business days).
  4. Documentation, sample clients, and test cases (1–2 business days).
  5. Typical first delivery in 5–15 business days; third-party approvals may extend timelines.

FAQ

What do you need from me?

The target app (Simbank — already provided), concrete data needs (e.g. transaction history, statement export, deposit positions), and any existing partner credentials or sandbox access from Doscredobank.

How long does delivery take?

Usually 5–12 business days for a first API drop and docs. Real-time webhooks for installment or QR events may take a little longer.

How do you handle compliance?

Authorized or documented endpoints only, with logging, consent records, in-country processing for card data per the 2025 NBKR rule, and data-minimization. NDAs available on request.
📱 Original app overview — Simbank by Doscredobank (appendix)

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:

  • Free card opening & delivery — one VISA card for loans, personal funds, cashback, and payments.
  • Credit limit up to 200,000 soms, interest-free for up to 62 days; loans approved online in 3 minutes.
  • Cashback on card purchases — up to 20%.
  • "Piggy Bank" service with convenient deposit methods + 7% APR.
  • Up to 24-month installment plans for purchases, transfers, or cash withdrawals (fee 2.24% per month).
  • Fee-free card top-ups, transfers to any bank, mobile top-ups, utilities, government services, traffic fines, parking, and QR payments.
  • Simbank deposits up to 14% per annum, deposit protection, anytime withdrawal and top-up.
  • "My Home" QR-scan utility bill payments.
  • 5% per annum on the balance of personal funds on the card.
  • Commission-free in-app parking payments.
  • Google Pay support.
  • Stylish, intuitive mobile app.
  • Incognito mode — balance and amounts hidden from view.
  • Spending analytics with graphs, tags, notes, and purchase geography.
  • Payment reactions — emojis instead of "thank you".
  • Shake-to-pay quick transfer.
  • Reply to a payment / repeat previous payments.
  • Attach a beautiful card to a transfer.
  • Split a joint bill with friends.
  • Subscription manager (Netflix, Apple, YouTube, etc.).
  • In-app rewards.
  • Attentive 24/7 customer support — live chat or phone, no bots.
  • Manage card in a few taps: PIN, internet limit, block, statement order, info update, reissue.

Open Joint-Stock Company "Dos-Kredobank". License of the National Bank of the Kyrgyz Republic No. 037.