bKash DSO API integration services (distributor & OpenFinance)

Compliant protocol analysis and runnable API source for the bKash Distribution Sales Officer (DSO) workflow in Bangladesh.

From $300 · Pay-per-call available
OpenData · OpenFinance · Distributor protocol analysis · MFS integration

Connect bKash DSO distributor accounts, e-money balances and B2B transactions to your stack — safely

The bKash DSO app is the daily cockpit for the roughly 5,000 Distribution Sales Officers who serve bKash's network of more than 300,000 agents and over 82 million customers across Bangladesh. We deliver bKash DSO protocol analysis, login and PIN flow modelling, e-money balance polling, statement export and B2B agent transfer APIs, all positioned as OpenData / OpenFinance integrations rather than ad-hoc scraping.

DSO login & session APIs — Mirror the SMS-verified onboarding plus account-number and PIN login, including session refresh and tap-and-hold transaction confirmation, so a back-office service can act on behalf of a distributor with full audit trail.
E-money & cash balance feed — Programmatic equivalent of the in-app one-tap balance check, with secure caching, masking, and webhook deltas suitable for treasury dashboards and float-management tooling.
Distributor statement export — Search-by-trxID, date-range and counterparty filters across the DSO statement screen; export to JSON, Excel or PDF for accounting reconciliation and audit.
B2B agent transfer pipeline — End-to-end automation of the simplified agent-selection & B2B flow, including pre-confirmation amount validation and the tap-and-hold commit step that protects against fat-finger errors.

What we deliver

Deliverables checklist

  • OpenAPI / Swagger spec covering login, balance, statement and B2B endpoints
  • Protocol & auth flow report (SMS verification, PIN, token chain, tap-and-hold confirm)
  • Runnable Python and Node.js reference clients for the DSO workflow
  • Automated regression tests against a fixture or sandbox account
  • Compliance notes covering KYC, BFIU Circular 20 expectations and data retention
  • Production-ready logging, retry and idempotency patterns

Why bKash DSO data is worth integrating

bKash reported its highest-ever annual profit of Tk 676.33 crore in 2025, more than double the Tk 315.77 crore figure recorded in 2024 — a signal of how much commerce now flows through the distributor channel. Connecting the DSO app's structured data to ERP, treasury and risk systems lets distributors close their books faster, surface float shortfalls before they bite, and feed reliable evidence into BFIU compliance reports.

Because the DSO is the bridge between bKash's central platform and the long tail of agents and merchants, every transaction visible in the app is a candidate signal for credit scoring, agent-performance analytics and territory management.

Data available for integration

The table below maps the bKash DSO surface area to the OpenData primitives a back-office system actually consumes. Each row names the source screen, the granularity we can extract, and one common downstream use.

Data typeSource (screen / feature)GranularityTypical use
DSO account profileLogin & profile screenDSO account number, name, territory, statusMaster-data sync, ERP onboarding
E-money balanceOne-tap balance cardCurrent value in BDT, last-refresh timestampFloat monitoring, treasury dashboards
Cash balanceBalance card (cash side)Current value in BDT, ledger positionCash-in-transit reconciliation
Transaction statementStatement / search screenTrx ID, type, counterparty, amount, fee, status, timestampReconciliation, accounting export, dispute handling
B2B agent transfersB2B (Bitubi) flowSender DSO, recipient agent, amount, commission, confirmation hashAgent performance analytics, settlement
Confirmation eventsTap-and-hold commit + PIN entryPre-commit and post-commit state, retry attemptsFraud detection, dual-control workflows
Notification logSMS verification & in-app alertsEvent type, channel, delivery statusAudit trail for BFIU reporting

Typical integration scenarios

1. Treasury float management for distributors

Business context: A regional distributor running dozens of DSOs needs sub-hour visibility on e-money and cash float so that agents never run dry on payday weekends.

Data & APIs: Balance feed polled every five minutes plus statement webhooks for inbound replenishments and outbound B2B transfers.

OpenFinance mapping: Equivalent to the account information primitive in PSD2 / Open Banking — read-only balance and movement data, normalized to ISO 20022-style fields.

2. Automated reconciliation for accounting and ERP

Business context: An accounting team imports bKash DSO statements weekly into Tally or SAP and has to match each line against issued invoices.

Data & APIs: Statement export endpoint with date-range and trxID filters, plus a CSV/Excel renderer that mirrors the in-app statement layout.

OpenFinance mapping: Aligns with the transaction history export use case standardized in many open data initiatives — same shape, different rails.

3. Agent performance & territory analytics

Business context: A territory manager wants weekly heat-maps of which agents are receiving the most B2B replenishments, with anomaly alerts on dormant or fraud-prone accounts.

Data & APIs: Aggregated B2B agent transfer feed, joined to the DSO profile master, surfaced through a GraphQL gateway.

OpenFinance mapping: Combines OpenData analytics with risk-control telemetry — agent-level KPIs become first-class objects in your BI stack.

4. AML / BFIU reporting pipeline

Business context: A compliance officer must file STR/SAR reports under BFIU Circular 20 and the Bangladesh Bank MFS Regulations 2022, and needs immutable transaction evidence.

Data & APIs: Append-only statement feed, hash-chained, with confirmation events and notification log; export-to-PDF for regulator submissions.

OpenFinance mapping: A regulatory-reporting overlay on top of OpenData — the same primitives, with chain-of-custody guarantees.

5. Distributor mobile super-app embed

Business context: A distributor builds an internal mobile dashboard for its DSOs that surfaces bKash data alongside competitor MFS feeds (Nagad, Rocket).

Data & APIs: Login session brokering, balance and statement endpoints, push-notification webhooks, all multiplexed behind one token per DSO.

OpenFinance mapping: A multi-rail aggregation pattern — the same idea Open Banking delivered for European retail accounts, applied to Bangladesh's MFS distribution layer.

Technical implementation

Login & session bootstrap (pseudocode)

POST /api/v1/bkash-dso/session
Content-Type: application/json

{
  "dso_account": "01XXXXXXXXX",
  "pin": "<encrypted>",
  "sms_otp": "123456",
  "device_fingerprint": "<sha256>"
}

200 OK
{
  "access_token": "eyJhbGciOi...",
  "refresh_token": "rt_...",
  "expires_in": 1800,
  "session_scope": ["balance.read", "statement.read", "b2b.write"]
}

Statement query (pseudocode)

POST /api/v1/bkash-dso/statement
Authorization: Bearer <ACCESS_TOKEN>
Content-Type: application/json

{
  "from_date": "2026-04-01",
  "to_date":   "2026-04-30",
  "type":      ["B2B", "CASH_IN", "CASH_OUT"],
  "page":      1,
  "page_size": 100
}

200 OK
{
  "items": [
    {
      "trx_id": "B2B25040712345",
      "type": "B2B",
      "counterparty": "01YYYYYYYYY",
      "amount": 25000.00,
      "currency": "BDT",
      "fee": 0.00,
      "status": "SUCCESS",
      "timestamp": "2026-04-07T10:22:11+06:00"
    }
  ],
  "page": 1,
  "total_pages": 7
}

B2B confirmation webhook (pseudocode)

POST https://your-app.example.com/webhooks/bkash-dso/b2b
X-Signature: sha256=...
Content-Type: application/json

{
  "event": "b2b.confirmed",
  "trx_id": "B2B25050812989",
  "dso_account": "01XXXXXXXXX",
  "agent_account": "01ZZZZZZZZZ",
  "amount": 50000.00,
  "currency": "BDT",
  "confirmed_at": "2026-05-08T14:05:33+06:00",
  "tap_hold_ms": 2400
}

Recommended handler:
- Verify HMAC signature with shared secret
- Idempotency key = trx_id
- On replay, return 200 OK without side effects

Each endpoint ships with structured error codes (SESSION_EXPIRED, OTP_INVALID, BALANCE_STALE, B2B_AMOUNT_BELOW_MIN) so client code can branch deterministically instead of parsing localized strings.

Compliance & privacy

Regulations we align to

bKash operates under Bangladesh Bank as a subsidiary of BRAC Bank PLC. Every integration we deliver is mapped to the Bangladesh Bank Regulatory Guidelines for Mobile Financial Services 2022, the Guideline on ICT Security v4.0 (April 2023), and BFIU Circular 20 on AML/CFT, KYC, STR/SAR reporting and agent-monitoring expectations.

Where a deployment crosses borders — for example a regional distributor headquartered in Dubai or Singapore consuming the data via a centralized ERP — we add a privacy layer modelled on GDPR-style minimization, since Bangladesh's draft data-protection law is following that template.

Privacy controls baked in

  • PIN never stored at rest; only an encrypted derivation used for session refresh
  • Field-level masking for account numbers in logs and exports
  • Configurable retention windows aligned to BFIU expectations
  • Consent records linked to the SMS-verified onboarding event
  • Optional on-prem deployment for distributors with sensitive territories

Data flow & architecture

A typical bKash DSO integration follows a four-stage pipeline that any back-office team can plug into existing tooling:

  1. Client (DSO app surface) — login, balance, statement and B2B flows, accessed through our protocol-analysis layer instead of UI scraping.
  2. Ingestion / API gateway — token brokering, rate limiting, idempotency keys, HMAC-signed webhooks for B2B confirmations.
  3. Storage — append-only event store for statements and confirmations, plus a normalized warehouse table per data type for analytics.
  4. Analytics & downstream APIs — BI dashboards, ERP connectors (Tally / SAP / Oracle), and a thin REST/GraphQL surface for partner apps.

Market positioning & user profile

The bKash DSO app is squarely B2B: its primary users are Distribution Sales Officers — field staff working under bKash's distributors — who replenish agents, manage territory float and report up the chain. They are predominantly Android users in semi-urban and rural Bangladesh, often working in Bangla, with a smaller iOS segment in Dhaka and Chattogram. Their counterpart audience for the data we extract is the head-office and finance team back in HQ: regional managers, compliance officers and ERP teams who consume distributor data in English. This page is therefore aimed at engineering and product leads at distributors, fintech ISVs, ERP vendors and analytics consultancies who need a clean, lawful integration layer between bKash's distribution rails and their own systems.

Screenshots

Click any thumbnail to view the full-resolution screenshot.

bKash DSO screenshot 1
bKash DSO screenshot 2
bKash DSO screenshot 3
bKash DSO screenshot 4

Similar apps & integration landscape

bKash DSO sits inside Bangladesh's broader mobile financial services ecosystem. Teams building cross-rail dashboards or aggregator products typically encounter the apps below alongside it. We list them here as part of the integration landscape so that engineering leads searching for any one of these tools can also find a starting point for the bKash DSO side of their stack.

Nagad

Postal-service-backed MFS and the second-largest player by transaction volume; teams that already export Nagad merchant statements often need bKash DSO data in the same warehouse for unified reconciliation.

Rocket (Dutch-Bangla Bank)

One of the earliest mobile money services in Bangladesh; pairs naturally with bKash DSO data for distributors who service customers across both rails.

Upay (UCB)

Newer entrant backed by United Commercial Bank with strong P2P features; useful comparison data when benchmarking distributor float velocity.

NexusPay

Dutch-Bangla Bank's digital wallet for everyday transactions; a common second feed for treasury teams that already centralize Rocket data.

Dmoney

Digital wallet covering cash-in/out, airtime, utility bills and merchant payments; relevant for ERP teams unifying multi-wallet receipts per customer.

Tallypay

Sheba-backed wallet focused on small businesses; complements bKash DSO data when modelling SME merchant behaviour.

SureCash

MFS provider focused on tuition and government disbursements; useful counter-data for distributors operating near schools and public sector clients.

SSLCOMMERZ

Leading payment gateway aggregator in Bangladesh; merchants often combine SSLCOMMERZ settlement reports with bKash DSO statements for end-to-end revenue recognition.

ShurjoPay

Multi-method gateway with strong wallet coverage; complements DSO-side data when reconciling online-to-offline flows.

aamarPay

Popular checkout aggregator for Bangladeshi e-commerce; teams routinely merge its callbacks with bKash DSO statements to close the loop on agent-funded orders.

bKash Agent app

The agent-facing companion to bKash DSO; pairing the two data feeds gives a complete view of the agent-to-distributor settlement chain.

About us

OpenFinance Lab is an independent technical studio focused on App interface integration and authorized API integration for fintech, banking and adjacent sectors. Our engineers come from MFS operators, payment gateways, protocol-analysis teams and cloud-native back-ends, and we have shipped production integrations across South Asia, the Middle East and Southeast Asia.

  • Mobile financial services, digital banking and cross-border clearing
  • Authorized protocol analysis and API gateway design
  • Custom Python / Node.js / Go SDKs and end-to-end test harnesses
  • Full pipeline: protocol analysis → build → validation → compliance review
  • Source code delivery from $300 — runnable API source, OpenAPI docs, pay after delivery on satisfaction
  • Pay-per-call API billing — call our hosted endpoints with no upfront fee

Contact

Send us the target app (bKash DSO), the data flows you care about (statements, balances, B2B confirmations) and any sandbox or distributor credentials you already hold. We respond with a scoped quote within one business day.

Contact page

Engagement workflow

  1. Scope confirmation: which DSO data flows you need (login, balance, statement, B2B), and the volume profile.
  2. Protocol analysis & API design (2–5 business days, complexity-dependent).
  3. Build, internal validation against fixtures or your sandbox account (3–8 business days).
  4. Documentation, sample code and BFIU-aware test cases (1–2 business days).
  5. Typical first delivery: 5–15 business days; cross-distributor or webhook fan-out can extend that.

FAQ

What do you need from me to start a bKash DSO integration?

The target app name (bKash DSO is provided), your concrete data needs (e.g. distributor statements, e-money balance polling, B2B agent transfers), and any active distributor or sandbox credentials your business already holds. We work with whatever access you legitimately have.

How long does delivery take for a bKash DSO API drop?

Usually 5–12 business days for a first runnable API and documentation set. Real-time webhooks, multi-distributor account fan-out, or back-office reconciliation pipelines may extend the timeline by another 1–2 weeks.

How do you handle Bangladesh Bank compliance and data privacy?

We work only against authorized or documented public APIs and align with the Bangladesh Bank MFS Regulations 2022, the Guideline on ICT Security v4.0 (April 2023), and BFIU Circular 20 on AML/CFT. Logs, consent records, KYC fields and data minimization are part of the deliverable, and NDAs are signed when required.

Can you support both source-code delivery and a pay-per-call API?

Yes. Source code delivery starts at $300 — we hand over runnable Python or Node.js code plus OpenAPI documentation and you pay after delivery. Alternatively you call our hosted endpoints and pay only for successful calls, which suits teams that prefer pure usage-based pricing.
📱 Original app overview (appendix)

bKash DSO is the official app for Distribution Sales Officers in bKash's nationwide network. It digitizes the daily B2B and reporting work that DSOs previously did over USSD and paper, and the entire UI is built in simple Bangla so that field staff in any district can use it without translation.

Onboarding: The app requires an active DSO account. After SMS-based verification, the DSO logs in using the account number and the current bKash menu PIN, with a security model designed to keep transaction credentials out of long-term storage on the device.

One-tap balance check: DSOs can check both cash and e-money balances with a single tap; the app hides balance values automatically after a short delay to protect privacy in shared field environments.

Statements: A full transaction statement view supports search by transaction ID and date range, so DSOs can pull up any specific entry quickly without scrolling through long histories.

Simplified B2B: Agent selection during a B2B (Bitubi) transfer is now faster than before, with the recipient agent surfaced quickly so the DSO can move to the amount screen with minimal taps.

Tap-and-hold confirmation: After PIN entry, the user holds a button for a few seconds to commit a transaction. Before that final commit, the amount and recipient can still be edited or cancelled, which substantially reduces accidental transfers.

Original app description (Bangla) is provided by bKash on the Google Play listing; this English summary is paraphrased for international integrators.

Last updated: 2026-05-08