Connect CPCU iMobile Banking to your accounting, PFM, or compliance stack
CPCU iMobile Banking is the official mobile app of CorePlus Federal Credit Union (Norwich, Connecticut), a community credit union founded in 1936 that today serves more than 29,000 members across seven branches in Northern and Eastern Connecticut. We deliver protocol analysis and API integrations that expose the app’s core data — checking and savings balances, mortgage and auto-loan positions, 90 days of transaction history, mobile check deposit metadata, and Zelle® payment status — through OpenBanking-style endpoints aligned with the CFPB’s Section 1033 Personal Financial Data Rights rule.
What we deliver
Deliverables checklist
- OpenAPI 3.1 specification for the integration surface (auth, accounts, transactions, transfers, deposits, alerts)
- Protocol & auth flow report — member login, MFA challenge, session refresh, biometric step-up, and cookie chain analysis
- Runnable Python and Node.js client SDKs with typed models and example notebooks
- Webhook handlers for transaction posting, deposit clearing, and Zelle events
- Compliance package — CFPB Section 1033 mapping, GLBA Safeguards checklist, retention & consent templates
- Test plan with positive, negative, and rate-limit scenarios; CI-friendly fixtures
Engagement models
Two ways to work with us, both designed to keep risk and upfront cost low for community-bank and fintech teams:
- Source code delivery from $300 — we hand over runnable API source code and full documentation; pay after delivery upon satisfaction.
- Pay-per-call hosted API — access OpenFinance Lab’s managed endpoint and pay only per call, ideal for pilots and PFM apps with unpredictable volumes.
Data available for integration
The table below summarises the data surfaces we can expose for CPCU iMobile Banking, derived from the app’s public feature description and the CFPB Section 1033 covered-data definitions for transaction accounts, payment-initiating accounts, and credit-card-style products.
| Data type | Source (screen / feature) | Granularity | Typical use |
|---|---|---|---|
| Member profile & preferences | My profile menu, notification preferences | Per-member, current | KYC refresh, marketing-consent management, identity-confirmation flows |
| Account list (share, share-draft, MMA, IRA) | Accounts dashboard, Fast Balances | Per-account, near real-time | Net-worth aggregation, PFM dashboards, member 360 views |
| Loan position & schedule | Mortgage / auto-loan tile | Per-loan, daily | Refi targeting, debt-service-ratio scoring, payoff calculators |
| Transaction history | Statements view, transaction list | 90-day window, per-line | Reconciliation, expense categorisation, AML/fraud signals |
| Bill-pay & recurring payments | Bill manager | Per-payee, per-schedule | Cash-flow forecasting, subscription audit, autopay migration |
| Zelle® transfers | Send Money / Zelle module | Per-transfer, event-level | Treasury reconciliation, dispute evidence, P2P cohort analytics |
| Mobile RDC artifacts | Deposit checks (camera capture) | Per-deposit, with images | AR ingestion, fraud screening, support escalations |
| Account alerts | Alerts & notifications centre | Per-rule, real-time | Operations dashboards, customer-service triggers |
Typical integration scenarios
1. PFM aggregation for credit-union members
A regional Personal Finance Management (PFM) app wants to show CPCU members a unified view alongside their non-CPCU accounts. We map the iMobile login and balance endpoints into a token-keyed account-list call, then stream the 90-day transaction window with category tags. The flow mirrors how WECU uses Plaid to power a unified PFM in-app, but works on a smaller credit-union footprint.
2. Accounting-software sync (small-business members)
Small businesses banking with CorePlus often run QuickBooks or Xero. We deliver a nightly OFX/CSV/JSON export of share-draft transactions plus posted Zelle and bill-pay events, keyed by member-issued OAuth tokens, so reconciliation no longer requires manual statement download.
3. CFPB 1033 consumer-permissioned data export
Section 1033 of Dodd-Frank, finalised by the CFPB in October 2024, requires covered institutions to make consumer financial data available to authorised third parties at no cost, with at least 24 months of transaction history once fully phased in. We build a 1033-style endpoint that wraps the iMobile data layer with consent, scoping, and revocation primitives.
4. Mortgage & auto-loan refinancing leads
A digital lender wants to surface refinance offers to CPCU members. We expose loan-balance, rate, and payoff-date fields under explicit consent, push them through the lender’s underwriting model, and return personalised quotes back into the member’s alerts feed.
5. Treasury reconciliation for non-profit members
A Connecticut non-profit using CorePlus needs Zelle and bill-pay events in its general ledger. We deliver a webhook bridge that converts each Zelle send/receive and recurring payment into a journal-entry-ready record with payee, memo, and posted date, eliminating spreadsheet copy-paste.
Technical implementation
Member authentication (OAuth-style, with biometric step-up)
POST /api/v1/cpcu/auth/token
Content-Type: application/json
{
"member_id": "user@example.com",
"credential": "<encrypted-password>",
"device": {
"platform": "android",
"biometric": "face_id",
"device_id": "d-7c1f..."
},
"scope": ["accounts.read", "transactions.read", "zelle.read"]
}
200 OK
{
"access_token": "eyJhbGciOi...",
"refresh_token": "rt_...",
"expires_in": 1800,
"mfa_required": false
}
Statement / 90-day transaction pull
GET /api/v1/cpcu/accounts/{account_id}/transactions?from=2026-02-01&to=2026-04-30&page=1
Authorization: Bearer <ACCESS_TOKEN>
X-Consent-Id: cns_8a2f...
200 OK
{
"account_id": "acc_share_drft_001",
"currency": "USD",
"page": 1, "per_page": 50,
"items": [
{
"txn_id": "t_2026_03_18_044",
"posted_at": "2026-03-18T14:02:11Z",
"amount": -42.17,
"type": "DEBIT_CARD",
"merchant": "STOP & SHOP #0612",
"category": "groceries",
"status": "POSTED"
}
]
}
Zelle® event webhook
POST https://your-app.example.com/webhooks/cpcu/zelle
X-OFL-Signature: t=1714670400,v1=...
{
"event": "zelle.payment.completed",
"member_id": "m_44102",
"direction": "OUTBOUND",
"amount": 120.00,
"currency": "USD",
"counterparty": {"alias": "+15555550143", "type": "phone"},
"memo": "Rent share",
"completed_at": "2026-04-30T15:48:02Z"
}
// Verify HMAC, then upsert into ledger.
Compliance & privacy
Regulatory alignment
For US credit-union data, our integrations are designed around the CFPB’s Personal Financial Data Rights rule (Section 1033 of Dodd-Frank, finalised on October 22, 2024). Covered depository institutions with $850M+ in assets must make consumer-permissioned data available in machine-readable form, with the largest providers in scope from April 1, 2026 and the smallest by April 1, 2030. We additionally honour GLBA Safeguards Rule expectations for a credit-union service-provider relationship and follow NCUA letters on third-party data sharing.
Privacy & data-minimisation
Every integration we ship enforces explicit, scoped, and revocable member consent; uses field-level redaction for SSN, account numbers, and check images; and emits an immutable audit log per request. Tokens are short-lived (30 minutes by default) with refresh rotation, and we never persist plaintext member credentials. Where card information moves through the pipeline, we follow PCI DSS v4.0 segmentation guidance.
Data flow & reference architecture
A typical CPCU iMobile Banking integration uses a four-stage pipeline:
- Client (CPCU iMobile Banking + your app) — member-permissioned login, biometric step-up, scope selection.
- Ingestion / API gateway — OpenFinance Lab adapter normalises iMobile responses into a Section 1033-compatible JSON schema, applies HMAC-signed webhooks for events.
- Storage & consent ledger — encrypted Postgres for transaction snapshots, S3-compatible object store for RDC images, append-only consent log.
- Analytics / API output — downstream PFM, ERP, fraud, or BI consumers query a stable REST/GraphQL surface; data-minimisation policies are applied at egress.
Market positioning & user profile
CPCU iMobile Banking is a regional, member-facing US credit-union app. Its primary users are the more than 29,000 CorePlus Federal Credit Union members in Northern and Eastern Connecticut — a community-bond charter that grew out of a 1936 Norwich teachers’ credit union and absorbed Connecticut Community Credit Union in 2018. The user base is overwhelmingly retail and small-business, with strong representation among educators, telecom retirees, and local employers, and the app runs on both Android and iOS, including Wear OS / watchOS companions for balance glances. From an integration standpoint, this profile favours small-batch, consent-driven OpenBanking pulls over high-throughput card-network style flows, with Plaid, MX, and Akoya as the most common aggregator counterparties.
Screenshots
Click any screenshot to view a larger version. These visuals show the surfaces — account list, transaction history, transfers, deposits, alerts — that map directly to the data inventory above.
Similar apps & the wider integration landscape
Teams that integrate CPCU iMobile Banking often work in the same pipelines as the apps below. We list these neutrally to map the broader credit-union and consumer-payments ecosystem — integrating one almost always raises questions about how to harmonise data with the others.
About OpenFinance Lab
We are an independent studio focused on fintech and OpenData / OpenFinance / OpenBanking API integration for mobile financial apps worldwide. Our team includes engineers from US community banks, Indian payment gateways, European PSD2 TPPs, and protocol-analysis specialists. For credit-union work specifically, we know NCUA expectations, CFPB Section 1033 implementation timelines, and how aggregator partners such as Plaid, MX, Finicity, Akoya, and Yodlee actually behave on long-tail credit-union endpoints.
- Community banking, credit unions, neobanks, and cross-border clearing
- Enterprise API gateways, consent ledgers, and security reviews
- Custom Python / Node.js / Go SDKs and CI-friendly test harnesses
- End-to-end pipeline: protocol analysis → build → validation → compliance sign-off
- Source code delivery from $300 — runnable code and full docs, paid after satisfaction
- Pay-per-call hosted API — usage-based pricing for pilots and unpredictable volumes
Contact
To request a quote or share your CPCU iMobile Banking integration requirements (specific endpoints, member volumes, target SLA), open our contact page:
For general member-side questions about the live app, CorePlus operates a dedicated iBanking and iMobile hotline at 860-886-0576 — we are not affiliated with that line.
Engagement workflow
- Scope confirmation — which iMobile surfaces (auth, accounts, transactions, Zelle, RDC, alerts) and target consumer systems.
- Protocol analysis & API design (2–5 business days, depending on MFA and aggregator-routing complexity).
- Build and internal validation against a sandbox or member-permissioned test account (3–8 business days).
- Documentation, sample notebooks, and test cases (1–2 business days).
- Typical first delivery in 5–15 business days; CFPB 1033 readiness reviews can extend timelines.
FAQ
What do you need from me?
org.coreplus.imobile), the specific scenarios you want covered (e.g. account aggregation, transaction history pulls, Zelle payment status, mobile check deposit ingestion), and any existing test member credentials, sandbox access, or third-party aggregator keys (Plaid, MX, Finicity, Akoya) you already use.How long does delivery take?
How do you handle compliance for a US credit union app?
Can you support Zelle and mobile check deposit specifically?
📱 Original app overview (CPCU iMobile Banking, appendix)
CPCU iMobile Banking is the official mobile app of CorePlus Federal Credit Union, headquartered in Norwich, Connecticut. The institution traces its roots to the Norwich Connecticut Teachers Federal Credit Union founded in 1936 by 27 educators, was renamed CorePlus Federal Credit Union in the 2000s, and absorbed Connecticut Community Credit Union (Pawcatuck) on April 23, 2018. CorePlus today serves more than 29,000 members through seven branches across Northern and Eastern Connecticut and is regulated by the NCUA.
The Android package identifier is org.coreplus.imobile; the app is also published on the Apple App Store as “CPCU iMobile Banking”. Per the official store description, the app supports the following member-facing capabilities:
- Manage your accounts — Monitor checking and savings (current and available), view mortgage, auto-loan, and other balances, and configure account alerts and preferences.
- Quick access — Touch ID® or Face ID® biometric login and Fast Balances for at-a-glance balance checks without full sign-in.
- Enhanced navigation — Profile menu for notifications and personal preferences, navigation tray for top features, and a hamburger menu containing the full transactional toolset.
- Deposit funds — Photo-based mobile check deposit with instant in-app status of the processing deposit.
- Make transfers and payments — Internal transfers, transfers to other financial institutions, bill pay with recurring-payment management, and Zelle® for U.S. mobile-number or email-keyed P2P transfers.
- Disclosures — The app itself is free; carrier message and data rates may apply; eligibility constraints apply to specific features and accounts. Zelle® is a registered service mark of Early Warning Services, LLC, used under licence.
For live member-side support, CorePlus operates an iBanking and iMobile hotline at 860-886-0576. This page is an independent technical-integration write-up and is not affiliated with CorePlus Federal Credit Union; CPCU®, CorePlus®, and Zelle® are the marks of their respective owners.