Meritrust Colorado API integration & OpenBanking data services

Authorized protocol analysis, FDX-aligned data flows, and runnable source code for the Meritrust Colorado (formerly Premier Members CU) member banking app

From $300 · Pay-per-call available
OpenData · OpenFinance · CFPB 1033 · FDX · Symitar SymXchange

Connect Meritrust Colorado member accounts, transactions, and bill-pay flows to your stack — lawfully and reliably

Meritrust Colorado (package com.premiermemberscu.premiermemberscu) is the consumer banking app for the merged Meritrust Credit Union & Premier Members CU footprint. Following Legal Day One on August 1, 2025, the combined organization serves 200,000+ members across 33 branches in Colorado and Kansas with nearly $4B in assets. Each member session in the app generates structured, high-value financial data — account balances, posted and pending transactions, scheduled bill payments, P2P transfers, recurring schedules, savings-goal progress, and card-status events — all of which can be surfaced to authorized fintechs through compliant, member-permissioned interfaces.

Account & balance APIs — Mirror the in-app "quick snapshot" experience: aggregate checking, savings, money-market, certificate, and loan balances under a single OAuth-style consent token bound to the member.
Transaction history & statement export — Pull posted, pending, and scheduled activity with date-range, category, and account filters; deliver as JSON, CSV, OFX, or PDF for accounting sync, reconciliation, or cash-flow underwriting.
Bill pay & transfer orchestration — Read and write payee lists, schedule one-off and recurring transfers, fetch payment status, and webhook back to your platform on settlement.
Card & alert controls — Lock/unlock debit and credit cards, subscribe to transaction, due-date, budget-threshold, and savings-goal alerts via push or webhook.

Feature modules we deliver for Meritrust Colorado

01Authentication & session

Capture the member login flow used by the Meritrust Colorado app, including device-binding, biometric step-up (Touch ID / Face ID), and refresh-token rotation. Output a documented OAuth-style wrapper your backend can call to obtain a member-scoped access token, with logging hooks for every consent event so a Rule 1033 audit trail is preserved.

02Account snapshot API

Aggregate balances and metadata across checking, savings, certificates, and loan products into a single response — matching what the app shows on its dashboard. Useful for treasury dashboards, member-experience portals, and personal-finance aggregators that need to render a unified household view.

03Transaction history & statements

Paged transaction queries with date-range, account, type, and amount filters, plus statement pulls in PDF/CSV/OFX. Supports cash-flow underwriting, accounting sync (QuickBooks, Xero), and dispute/chargeback investigation pipelines that need 24+ months of clean data.

04Bill pay & P2P transfers

Programmatic access to payee management, scheduled payments, recurring transfers, and pay-other-people flows. Returns settlement status and posts a webhook on completion so your AR/AP, payroll, or rent-collection product stays in sync without polling.

05Card controls & alerts

Lock and unlock debit and credit cards, register card-not-present alerts, and subscribe to budget-category, savings-goal, large-transaction, and overdue-payment notifications. Useful for fraud-prevention layers, parental-control fintechs, and high-touch wealth advisors.

06Mobile check deposit (RDC)

Image-capture and submission flow for remote deposit capture, including front/back image normalization, MICR parsing, and deposit-status callbacks. Pairs well with small-business invoicing apps that want to convert paid checks into reconciled deposits without manual handoff.

Data available for integration

The Meritrust Colorado app surfaces a rich set of structured records that map cleanly to FDX v6.4 entities and CFPB Rule 1033 covered-data categories. Below is a working inventory we use during scoping.

Data typeSource (in-app surface)GranularityTypical downstream use
Account directory & balancesAccount snapshot dashboardPer-account, near-real-timeNet-worth dashboards, treasury aggregation, eligibility checks
Posted & pending transactionsAccount activity viewsPer-transaction, with merchant + categoryCash-flow underwriting, expense management, anti-fraud signals
Statements (PDF / OFX)Statements moduleMonthly archivalKYC/KYB, audit, mortgage and loan applications
Scheduled bill payments & payeesBill pay managerPer-payment, future-datedAR/AP automation, accounting sync, reminders
P2P & account-to-account transfersPay people / Transfer moneyPer-event with statusRent collection, payroll, family-finance products
Recurring transfer schedulesTransfer schedulerSchedule + next-run timestampSubscription billing, savings automation
Budget categories & spendingBudget progress viewPer-category monthlyPFM apps, financial-wellness coaching
Savings-goal progressSavings goals trackerGoal + progress percentageGoal-based investing, gamified savings
Card status eventsCard lock/unlock controlsPer-card, real-timeFraud orchestration, lost-card workflows
Branch & ATM locatorFind a branchGeo + hoursMaps, in-store SDKs, member service tools

Typical integration scenarios

Scenario A — Small-business accounting sync

Context: A Colorado-based bookkeeping SaaS wants to import Meritrust Colorado checking and credit-card activity for member businesses without asking for credentials each month.
Data & APIs: account directory + transaction history + monthly statement export.
OpenBanking mapping: Member grants consent under a Rule 1033-style flow; FDX accounts and transactions resources are pulled nightly via a member-scoped access token that the bookkeeper refreshes silently.

Scenario B — Cash-flow underwriting for auto loans

Context: An indirect auto-lending fintech wants 12–24 months of deposit and withdrawal history to assess capacity for a vehicle refinance offer.
Data & APIs: long-window transaction pulls, recurring-payment detection, salary deposit recognition.
OpenBanking mapping: One-time consent retrieves the historical window; webhook events trigger re-pulls at decision checkpoints, eliminating PDF statement uploads.

Scenario C — Family budget & savings coach

Context: A consumer PFM app wants to surface the member's existing budget categories and savings-goal progress alongside outside accounts.
Data & APIs: budget summary, savings-goal endpoint, alert subscriptions.
OpenBanking mapping: Read-only scope plus push-style webhook subscriptions; the PFM never stores raw credentials, only the consent token.

Scenario D — Rent collection for landlords

Context: A property-tech platform wants to schedule recurring rent transfers from member tenants and confirm settlement on landlord books.
Data & APIs: recurring-transfer scheduling, transfer-status webhook, P2P pay-people flow.
OpenBanking mapping: Write-scope consent for scheduled transfers, narrowly limited to a named beneficiary; revocation honored via the standard consent endpoint.

Scenario E — Card-fraud overlay for merchant gateways

Context: A fraud-prevention vendor wants to instantly disable a Meritrust Colorado debit card the moment its rules engine detects a high-risk auth.
Data & APIs: card lock endpoint, alert webhook for posted transactions, push notification path.
OpenBanking mapping: A scoped write token allows lock/unlock only; alert webhooks feed the vendor's risk pipeline in near real time.

Technical implementation

Below are representative request shapes drawn from our reference build. Field names align with FDX v6.4 where possible so the same client can address other US credit-union data providers with minimal divergence.

1. Member login & consent

POST /api/v1/meritrust-co/auth/login
Content-Type: application/json

{
  "member_id": "PMCU-8821xxxx",
  "credential": "<password-or-mfa-blob>",
  "device": {
    "platform": "ios",
    "biometric": "face_id",
    "device_fingerprint": "0a3f...c2"
  },
  "consent": {
    "scope": ["accounts:read","transactions:read","transfers:write"],
    "purpose": "accounting_sync",
    "ttl_days": 90
  }
}

200 OK
{
  "access_token": "eyJhbGciOi...",
  "refresh_token": "rt_3f82...",
  "consent_id": "csnt_2025_04_25_abcd",
  "expires_in": 1800
}

2. Statement / transaction query

GET /api/v1/meritrust-co/accounts/{account_id}/transactions
  ?from=2026-01-01&to=2026-04-25&page=1&page_size=100
Authorization: Bearer <ACCESS_TOKEN>
X-Consent-Id: csnt_2025_04_25_abcd

200 OK
{
  "account_id": "acc_chk_4421",
  "page": 1,
  "total": 318,
  "transactions": [
    {
      "id": "txn_9f12",
      "posted_at": "2026-04-22T14:08:00Z",
      "amount": -42.18,
      "currency": "USD",
      "description": "KING SOOPERS #0125 BOULDER CO",
      "category": "groceries",
      "status": "posted"
    }
  ]
}

3. Settlement webhook

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

{
  "event": "transfer.completed",
  "transfer_id": "tr_7821",
  "account_id": "acc_chk_4421",
  "amount": 1850.00,
  "counterparty": "LANDLORD-LLC",
  "settled_at": "2026-04-25T12:00:11Z",
  "consent_id": "csnt_2025_04_25_abcd"
}

# Recommended: verify HMAC, idempotency-key on transfer_id,
# retry policy: exponential backoff up to 24h, then DLQ.

Compliance & privacy

Every Meritrust Colorado integration we deliver is scoped against current US financial-data regulation. The CFPB's Personal Financial Data Rights Rule (12 CFR Part 1033), finalized October 22, 2024 and effective January 17, 2025, requires covered data providers to make consumer transaction and account data available in a standardized electronic form to authorized third parties — with explicit consent, revocation, and audit logging. Although tiered compliance dates were stayed by court order in late 2025, we already build to the rule's data-minimization, scope-binding, and consent-revocation expectations.

We further align payload shapes to FDX API v6.4 (Spring 2025), which incorporates 24 new RFCs, a refreshed Consent API behavioral specification, and the CSDF security model. Where applicable we honor the GLBA Safeguards Rule, NCUA member-data guidance, and state-level privacy statutes (e.g. the Colorado Privacy Act). NDAs, retention windows, and per-purpose access scoping are documented per engagement.

Data flow / architecture

A typical pipeline we ship looks like this:

  1. Client app / member browser → consent handshake against our adapter, returning a scoped access token.
  2. Ingestion API → pulls accounts, transactions, statements, and consent events from the member-scoped session, normalizing to FDX-shaped JSON.
  3. Storage layer → encrypted at rest (AES-256), partitioned by member, with retention tags for Rule 1033 revocation handling.
  4. Downstream API or webhook bus → serves your product (PFM, lender, accounting tool) and pushes settlement / alert events with HMAC-signed payloads.

Market positioning & user profile

Meritrust Colorado serves predominantly retail (B2C) members across the Front Range — Boulder, Denver, Lafayette, Longmont, Lone Tree — alongside the Wichita-anchored Kansas footprint inherited from the legacy Meritrust charter. The membership skews toward employer-group, education, and community-tied households, with growing small-business penetration following the merger. Both iOS and Android are first-class platforms for the app, with biometric login and mobile RDC adoption running high among members under 45. For integration partners this means three things: predictable Symitar-Episys-style backends, mature digital channels with FDX-aligned hooks emerging via Jack Henry SymXchange, and a member base whose appetite for permissioned data sharing is rising in step with the broader US OpenBanking shift.

Screenshots

Click any thumbnail to view the full-resolution image.

Meritrust Colorado screenshot 1 Meritrust Colorado screenshot 2 Meritrust Colorado screenshot 3 Meritrust Colorado screenshot 4 Meritrust Colorado screenshot 5 Meritrust Colorado screenshot 6 Meritrust Colorado screenshot 7 Meritrust Colorado screenshot 8 Meritrust Colorado screenshot 9 Meritrust Colorado screenshot 10

Similar apps & integration landscape

Members of Meritrust Colorado often hold accounts at neighboring credit unions, and integration buyers usually need a unified view across them. The apps below frequently appear in the same Colorado / US credit-union OpenBanking conversations — we list them purely as ecosystem context, not as ranked alternatives.

Bellco Banking

The mobile app of the second-largest Colorado credit union (Greenwood Village HQ). Members commonly need cross-institution transaction exports between Bellco and Meritrust Colorado for household budgeting and small-business books.

Canvas Credit Union

Lone Tree-based community CU with broad Front Range membership. Aggregators that ingest Canvas transaction data typically reuse the same FDX-aligned client to pull from Meritrust Colorado as well.

Ent Credit Union

Colorado's largest credit union by membership, headquartered in Colorado Springs. Card-control and bill-pay flows in Ent's app overlap heavily with Meritrust Colorado's, so a unified card-lock orchestration is a common ask.

Elevations Credit Union

Boulder-based CU with strong digital adoption among the same university and tech-employer segments Meritrust Colorado serves. Statement-export pipelines often run side-by-side for both apps.

Westerra Credit Union

Denver community CU. Westerra's transfer and recurring-payment data shapes are close enough to Meritrust Colorado's that a single normalization layer can serve both downstream products.

Meritrust Mobile (Kansas charter)

The Kansas-side Meritrust banking app from the same combined credit union. Cross-charter members benefit from a unified household-level transaction view that bridges the two apps.

Premier Members Mobile (legacy)

The legacy app brand for the same Colorado member base prior to the 2025 merger; useful historical reference for migration testing and dual-version rollout windows.

Bellco FCU Mobile Banking

A separate Pennsylvania-based credit union app sometimes confused with Colorado's Bellco. Naming-disambiguation aside, integration patterns mirror typical Symitar-backed CU stacks.

Premier America Credit Union

California CU running on Symitar Episys. Frequently referenced when our clients want a cross-state, multi-charter integration template that includes Meritrust Colorado.

Quorum Federal Credit Union

National-charter credit union with FDX-style data-sharing initiatives. Useful comparison point for how member-permissioned APIs are evolving across the broader credit-union sector.

What we deliver

Source code & documentation

  • OpenAPI / Swagger 3.1 specification for every endpoint we expose
  • Auth flow report (token chain, biometric step-up, refresh rotation)
  • Runnable Python and Node.js reference clients
  • Postman collection & pytest / Jest test harness
  • Webhook signing keys, idempotency & retry guidance
  • Compliance memo: Rule 1033 mapping, FDX v6.4 alignment, GLBA notes

Engagement workflow

  1. Scope confirmation: which member-permissioned data and write actions
  2. Protocol analysis & API design (3–5 business days)
  3. Build & internal validation against sandbox member accounts (4–8 days)
  4. Docs, samples, compliance memo, handover (1–2 days)
  5. Typical first delivery: 8–15 business days end-to-end

Pricing

Source code delivery from $300: we hand over runnable API source, OpenAPI spec, and full documentation; payment after delivery upon acceptance.

Pay-per-call API: use our hosted endpoints with per-call billing — no upfront fee, ideal for teams that want usage-based pricing without standing up infrastructure.

About our studio

We are an independent technical studio focused on App interface integration and authorized API integration for fintech clients worldwide. Our team brings hands-on experience from US and global banks, payments processors, credit-union service organizations, and protocol-analysis firms. We routinely ship production integrations across financial & banking apps (transaction records, statement export, card controls), e-commerce and retail apps (orders, payment sync), travel and mobility apps (booking, itinerary, payment verification), and social / OTT / dating apps (auth, messaging, profile management).

Customers tell us the same target-app name and requirement; we deliver runnable source code or a hosted API endpoint, fully documented, under either the from-$300 source-code model or pay-per-call billing. Every engagement includes compliance scoping against the relevant local regime (CFPB Rule 1033, GLBA, FDX in the US; PSD2/PSD3, GDPR in the EU; UPI/RBI in India; equivalent frameworks elsewhere).

Contact us

To request a quote or submit your target app and requirements, open our contact page below.

Open contact page →

FAQ

What do you need from us to start?

The target app name (Meritrust Colorado), a written description of the data flows you want (e.g. transaction history sync, card lock, recurring transfers), and any sandbox or test credentials you can lawfully share. We handle the protocol analysis from there.

How long is a typical first delivery?

Most engagements ship a working API plus documentation within 8–15 business days. Multi-scope writes (transfers, card actions) or third-party approval cycles can extend that.

How do you handle compliance and consent?

We work strictly under member authorization or documented public/authorized APIs. Consent records, scoping, and revocation are persisted in line with CFPB Rule 1033 expectations and FDX v6.4 patterns. We sign NDAs on request.

Will the integration survive the post-merger app changes?

Yes — we monitor the published Meritrust Colorado app over an agreed support window and ship update patches when login flows, payload shapes, or alert webhooks shift after the August 2025 merger consolidation.

Original app overview — Meritrust Colorado (appendix)

Publisher: Premier Members Credit Union, now operating as a division of Meritrust Credit Union following Legal Day One on August 1, 2025.
Package ID: com.premiermemberscu.premiermemberscu
Tagline: "Like your favorite neighborhood branch in an app." Marketed under "The Artisans of Banking" identity.

The Meritrust Colorado app gives members a single mobile surface for managing their relationship with the credit union. It supports a quick-snapshot dashboard across all enrolled accounts, secure sign-in with Touch ID and Face ID, full activity and balance review, debit and credit card lock/unlock, customizable transaction alerts, and remote check deposit. Members can pay other people, schedule loan payments, manage bill-pay payees and future-dated payments, and create or edit recurring money transfers without visiting a branch.

The app also embeds personal-finance tooling: budget progress summaries, spending and income breakdowns, and savings-goal tracking. Alert subscriptions cover transactions and purchases, upcoming or past-due payments, transfers, budget categories, and savings-goal milestones. Member service is built in — users can send a secure message, find their nearest branch or ATM, or initiate a phone call directly from the app.

Following the 2024–2025 merger between Premier Members CU (Boulder, CO) and Meritrust CU (Wichita, KS), the combined organization holds nearly $4 billion in assets, operates 33 branches, and serves more than 200,000 members across Colorado and Kansas. The consumer app retains the Meritrust Colorado branding for the legacy Premier Members member base while the broader Meritrust Mobile app continues to serve Kansas members. The board voted to maintain a Colorado state charter for the merged entity, citing flexibility for membership expansion.

This page describes technical integration positioning around the publicly observable functionality of the Meritrust Colorado app. It is not affiliated with, endorsed by, or sponsored by Meritrust Credit Union or Premier Members Credit Union.