Compliant OpenFinance protocol analysis and production-ready API source code for Mashreq Pakistan (com.mashreq.pakistan) — accounts, statements, transfers, billers and Shariah-compliant flows.
Mashreq Pakistan is the country's first foreign-bank-led digital retail bank licensed by the State Bank of Pakistan, and in November 2025 launched Mashreq NEO — Pakistan's first Islamic-first digital banking platform. The mobile app (com.mashreq.pakistan) holds rich, structured customer data: KYC profile, debit-card metadata, current and savings balances (with profit rates up to 5% on remunerative current accounts and up to 10% on Islamic savings), 4,000+ biller transactions, ATM withdrawals across the 1Link network, and PKR 10 million daily transfer history. We turn that data into integrable API endpoints.
Mashreq Pakistan is not a generic mobile-banking app: it is a digital-only retail bank operating under a State Bank of Pakistan licence, run on cloud-native infrastructure, and built around an API-first ethos inherited from Mashreq's UAE developer portal at developer.mashreq.com. That portal already exposes Payment Initiation, IBAN Validation, Account Information and Confirmation-of-Funds APIs to corporate clients — and the Pakistan stack reuses the same architectural patterns. The result is a banking app whose data plane is genuinely API-shaped, even when the official Pakistan endpoints are not yet publicly documented.
Our team specialises in turning that data plane into integrable services. Whether you are a fintech building a personal finance manager, a corporate ERP that needs PKR settlement reconciliation, an accounting SaaS importing salary credits, or a remittance platform routing UAE-to-Pakistan transfers, we deliver the protocol analysis report and runnable API source code needed to plug Mashreq NEO data into your product within 5–15 business days.
Long-tail capabilities you will read about across this page: Mashreq Pakistan statement API, NEO Islamic account balance integration, Pakistan IBFT/RAAST transfer automation, Mashreq biller catalogue export and SBP-compliant data extraction for regulated institutions.
Below is the structured catalogue of data the Mashreq Pakistan app holds and exposes through its mobile-banking back-end. We treat each row as a distinct integration target — surfaced as either a hosted endpoint on our gateway or as runnable source code that you deploy yourself.
| Data type | Source (screen / feature) | Granularity | Typical use |
|---|---|---|---|
| Customer profile & KYC | Digital onboarding (5-minute account opening) | Per-customer (CNIC, NTN, employment, address, biometric flag) | AML screening, B2B credit underwriting, white-label onboarding |
| Account balances | NEO Islamic Savings / Current dashboard | Per-account, near real-time (PKR, with profit accrual) | Cash-position dashboards, treasury, sweeping logic |
| Transaction statements | Account statement screen | Per-transaction (txn-id, datetime, amount, channel, counterparty IBAN, narration) | Accounting reconciliation, expense automation, audit |
| RAAST / IBFT transfer history | Send Money / Funds & Payments | Per-transfer up to PKR 10M/day | Settlement monitoring, FX cost analysis |
| Biller payments (4,000+ billers) | Pay Bills section | Per-payment (utility / telco / education / govt categories) | Spend analytics, recurring-bill detection, churn signals |
| NEO Debit Card transactions | Card management screen | Per-swipe / per-tap (merchant MCC, location, FX flag, 4% / PKR 200 conversion fee) | Loyalty programmes, fraud detection, Umrah campaign tracking |
| ATM withdrawals (1Link, 19,000+ ATMs) | Cards & cash menu | Per-withdrawal with location and bank | Branch-network analytics, cash-demand modelling |
| Cross-border NRP transfers | UAE-Pakistan remittance flow | Per-remittance, multi-currency leg detail | Diaspora remittance dashboards, FX hedging |
| Push notifications & chatbot logs | In-app 24/7 support, IVR fallback | Per-event message body and intent | Service analytics, NLP training, support QA |
Context: A Karachi-based SME runs QuickBooks-style accounting and needs to pull every PKR credit and debit on their NEO Current Account, including biller payments and salary disbursements.
Data & API involved: /v1/mashreq-pk/statement (paginated), /v1/mashreq-pk/balance, narration parser for biller-category mapping.
OpenFinance mapping: Mirrors the ISO 20022 camt.053 bank-statement message under the SBP PRISM+ framework, with our adapter normalising fields to the same schema corporate ERPs already expect.
Context: A money-transfer operator serving overseas Pakistanis needs to confirm landing of cross-border NEO transfers in near real time and notify senders.
Data & API involved: Webhook on cross_border.transfer.completed, plus /v1/mashreq-pk/transfer/status polling fallback. Includes the zero-fee remittance corridor announced for UAE-based Pakistanis.
OpenFinance mapping: Uses the bank's PISP-style payment-initiation pattern from Mashreq's UAE developer portal, ported to PKR rails.
Context: A PFM app aggregates Mashreq NEO alongside SadaPay, JazzCash, Easypaisa and NayaPay accounts so users see one net-worth view.
Data & API involved: Account login (OAuth-like), 12-month statement pull, NEO Debit Card MCC tagging, monthly profit-rate accrual on Islamic savings (up to 10% p.a.).
OpenFinance mapping: Account Information Service (AIS) consent model — read-only, scoped, revocable.
Context: A corporate uses Mashreq NEO Biz to push monthly payroll to 500+ employees and reconcile against HR records.
Data & API involved: Bulk transfer initiation with daily ceiling up to PKR 10M, IBAN validation pre-check, individual settlement webhooks.
OpenFinance mapping: Modelled on Mashreq's Payment Initiation API and IBAN Validation API already published for corporate clients on developer.mashreq.com.
Context: A regulated entity must file STR/CTR-style reports to the SBP, requiring tagged, immutable transaction history.
Data & API involved: Statement export with cryptographic hash, KYC export, audit-log endpoint, biller-category enrichment.
OpenFinance mapping: Aligned with the SBP Consolidated Customer Onboarding Framework (2025) and the SBP regulatory sandbox themes for Open Banking.
POST /api/v1/mashreq-pk/auth/login
Content-Type: application/json
X-Channel: mobile-app
{
"msisdn": "+923001234567",
"cnic": "42101-XXXXXXX-X",
"device_id": "",
"biometric_flag": true
}
200 OK
{
"access_token": "eyJhbGciOi...",
"refresh_token": "rtk_...",
"expires_in": 1800,
"scope": ["accounts.read","statements.read","transfers.write"]
}
POST /api/v1/mashreq-pk/statement
Authorization: Bearer <ACCESS_TOKEN>
Content-Type: application/json
{
"iban": "PK36MASH00000123456789",
"from_date": "2026-01-01",
"to_date": "2026-04-28",
"channel": ["RAAST","IBFT","CARD","BILLER"],
"currency": "PKR",
"page": 1,
"page_size": 100,
"format": "json" // or "csv","xlsx","pdf-signed"
}
200 OK
{
"page": 1, "total_pages": 7,
"items": [{
"txn_id": "MBPL-20260315-000341",
"posted_at": "2026-03-15T09:42:11+05:00",
"amount": -25000.00, "currency": "PKR",
"channel": "RAAST",
"counterparty_iban": "PK24ABPA00000099887766",
"counterparty_name": "ACME PRIVATE LIMITED",
"narration": "PAYROLL MAR-2026",
"category": "salary"
}]
}
POST https://your-app.example/webhooks/mashreq-pk
X-Mashreq-Signature: t=1714300800,v1=hex(hmac_sha256(secret, body))
{
"event": "transfer.completed",
"txn_id": "MBPL-XBORDER-9981",
"rails": "PRISM+",
"iso20022_msg": "pacs.008",
"leg": {"from":"AED","to":"PKR","fx_rate":76.42},
"amount_pkr": 152840.00,
"settled_at": "2026-04-28T11:05:33+05:00"
}
# Verify HMAC, ack with 200 within 3s, idempotency on txn_id.
Every Mashreq Pakistan integration we ship is scoped against the regulations that actually apply in-country: the State Bank of Pakistan (SBP) Consolidated Customer Onboarding Framework (2025), SBP PSP&OD Circular No. 02 of 2025, and the PRISM+ real-time fund-transfer system that adopts ISO 20022. Where customer data flows out of Pakistan we additionally honour the SBP Open Banking sandbox guidelines (May 2025 cohort) and, for cross-border UAE legs, the UAE Central Bank's Open Finance regulation. EU-bound integrations layer on PSD2/PSD3 and GDPR consent patterns.
Practically, that means: explicit user consent capture, scoped read-only tokens by default, no harvesting of biometric primitives, retention windows defined per dataset, deletion-on-request endpoints, and signed audit logs for every statement pull. We work only under documented public APIs or explicit customer authorisation — never around access controls.
A typical Mashreq Pakistan integration deployed by our studio looks like this:
The auth adapter mirrors the mobile-app handshake; the gateway normalises fields into ISO 20022-flavoured JSON; storage applies field-level encryption with KMS; and the customer-facing API enforces consent scopes plus rate limits. The whole pipeline is observable with structured logs and a per-tenant audit trail.
Mashreq Pakistan is positioned as a premium, Islamic-first digital-only retail bank targeting four primary customer segments: salaried professionals in metropolitan centres (Karachi, Lahore, Islamabad), gig-economy freelancers earning USD/AED and converting to PKR, women entrepreneurs running micro-businesses, and overseas Pakistanis (notably the ~1.7 million UAE-based Pakistani diaspora) who use the cross-border NEO account to remit home with zero fees. Mashreq has publicly committed to onboarding 10 million customers within five years in Pakistan, which makes the dataset both large and rapidly growing. The app supports Android (com.mashreq.pakistan on Google Play) and iOS (App Store ID 6737812546), with a single shared digital experience. Integrations should expect mobile-first auth, biometric assertions, and ISO 20022-aligned settlement messages on the back-end.
Click any thumbnail to view the full-size screenshot. These illustrate the screens whose data we typically integrate against — onboarding, accounts dashboard, transfer flow, debit-card management and statement export.
Teams that integrate with Mashreq Pakistan often need to integrate alongside other Pakistani digital-banking and wallet apps — to give end users a single view, or to consolidate transactions for compliance and reporting. The list below frames each app as part of the broader Pakistani fintech ecosystem; ranking or criticism is not the goal.
Telenor-backed digital bank and the country's first mobile-money service, with tens of millions of users. Holds wallet balances, biller history and biometric onboarding data; users with both Easypaisa and Mashreq NEO often need a unified PKR transaction export.
SBP-licensed Islamic digital bank backed by Pakistan Kuwait Investment Co. and Kuwait Investment Authority's Enertech. Offers Mudaraba savings, Saving Pots and PayPak debit cards — natural data twin for Mashreq NEO Islamic accounts.
Fee-free local and international payment app founded in 2019. Holds multi-currency wallet data (USD, PKR) and freelance-friendly card transactions; common to integrate alongside NEO for freelancer-oriented PFMs.
SBP-regulated EMI offering Visa virtual and physical cards, instant transfers, bill payments and merchant Arc payments. Useful counterpart for retail spend analytics integrations.
Operated by Jazz, with 40M+ users. Wallet, P2P transfers, QR pay and merchant settlement data — integrating with JazzCash plus Mashreq NEO covers the dominant retail segments at once.
Lending and payments platform focused on MSMEs, payroll and supply-chain finance. Integration is often paired with Mashreq NEO Biz for SME credit-decisioning data.
Upcoming digital bank consortium licensed by the SBP. Will hold similar account, card and transfer datasets, and has been frequently mentioned in the same competitive landscape as Mashreq NEO.
Another upcoming SBP-licensed digital bank. Listed here to indicate a near-term ecosystem expansion that integrators will want to plan for once production endpoints are exposed.
Sister app and developer portal in the UAE — exposes Payment Initiation, IBAN Validation and Account Information APIs that informed our integration patterns for the Pakistan side.
Source-code delivery from $300 — we hand over runnable API source code plus full documentation; you pay only after delivery upon satisfaction.
Pay-per-call API billing — point your client at our hosted Mashreq Pakistan endpoints and pay only for the calls you make, with no upfront fee. Ideal for variable-volume PFMs and pilot projects.
NDA available on request; source escrow for enterprise engagements.
We are an independent technical service studio specialised in app interface integration and authorised API integration. Our engineers come from retail banks, payment gateways, protocol-analysis and cloud infrastructure backgrounds, and we ship end-to-end financial APIs under strict security and compliance constraints. For Mashreq Pakistan specifically, we draw on our knowledge of the broader Mashreq UAE developer portal and on Pakistan's SBP regulatory framework (PRISM+, ISO 20022 adoption, the 2025 Open Banking sandbox).
To request a quote or scope a Mashreq Pakistan integration, share your target endpoints (account login, statement, transfer, billers) and any sandbox credentials you already hold. We respond within one business day.
What do you need from me to start?
How long until I see a working API?
How is compliance handled?
Does this cover NEO Biz (corporate) too?
Mashreq Pakistan (package id com.mashreq.pakistan) is the digital-only retail-banking app of Mashreq Bank Pakistan Limited, the local subsidiary of Dubai-headquartered Mashreq, one of the UAE's oldest financial institutions. The app brings Mashreq's global award-winning digital banking platform to Pakistan and was officially launched by Mashreq with a Pakistan retail pilot before the full Mashreq NEO rollout in November 2025, when it became Pakistan's first Islamic-first digital banking platform.
The app's headline value proposition combines four pillars: Convenience — banking anytime, anywhere from a phone; Innovation — Islamic-first digital products; Security — encrypted data and international-grade controls; and Commitment — to a vision of an empowered Pakistan. End-to-end, the experience is designed for users who never want to walk into a branch.
com.mashreq.pakistan) and iOS (App Store ID 6737812546).Mashreq Pakistan is a registered trademark of Mashreq Bank Pakistan Limited. This page describes integration positioning only and is independent of the bank.