Freedom CU Mobile API integration services (FDX / OpenBanking)

Compliant Symitar/SymXchange protocol analysis and runnable API source code for balances, statements, transfers and mobile-deposit data flows

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

Connect Freedom CU Mobile accounts, transactions and transfers to your stack — under member consent

Freedom CU Mobile (package coop.freedom.imobile) is a US credit-union retail banking client built on a Symitar Episys core. We deliver protocol analysis, account login flows, balance polling, statement export, ACH/A2A transfer instrumentation, and Remote Deposit Capture (RDC) data hooks that map cleanly to FDX-aligned OpenBanking endpoints — so reconciliation engines, accounting suites, and personal-finance dashboards can ingest the data your members already see in the app.

Authenticated member sessions — Mirror the app's login flow including Touch ID / Face ID rebinds, refresh tokens, and Fast Balances scope, so headless services can pull data without re-prompting.
Statement & transaction export — Checking, savings, mortgage and auto-loan history with paging, date filters, posting-date vs. transaction-date split, and JSON / CSV / OFX outputs for downstream ingestion.
ACH and A2A transfer instrumentation — Capture transfer initiation, status callbacks, and recurring-payment metadata; useful when external payment orchestrators need to reconcile disbursements posted via the credit union.
Card & alert telemetry — Card freeze/unfreeze events, Account Alert preferences, and recurring-bill state, so risk and member-engagement systems share a single ground truth with the mobile app.

What we deliver

Deliverables checklist

  • OpenAPI 3.1 specification for every endpoint we wire (login, balances, statements, transfers, RDC status, alerts)
  • Protocol & auth-flow report covering token lifecycles, biometric rebind, and replay-protection headers
  • Runnable source for login and statement export in Python and Node.js, plus a thin Go SDK on request
  • Unit and contract tests with replayable HTTP fixtures so QA can re-run the flow without a live member
  • Compliance guidance — CFPB Section 1033 alignment, GLBA, state privacy notices, and FDX consent receipt templates

Two engagement models

Pick the model that matches your procurement style — both come with the same documentation and test artifacts.

  • Source-code delivery from $300 — runnable code and docs handed over; you pay after acceptance.
  • Pay-per-call hosted API — call our managed endpoint, pay only for usage, no upfront fee, ideal for spikes and pilots.

Data available for integration

The mobile app surfaces a consistent set of member-facing data objects on top of the Symitar Episys core. The table below maps each object to its source screen, granularity, and a typical downstream use.

Data typeSource (screen / feature)GranularityTypical use
Account balance (current & available)Manage Your Accounts / Fast BalancesPer share/account, near real-timePFM dashboards, treasury cash visibility
Transaction historyAccount detail screenPer posting, with memo, amount, channelReconciliation, expense categorization, audit
Loan & mortgage balancesAccount list (mortgage, auto loan)Principal, interest accrued, payoff dateDebt aggregation, refinance modeling
Card state & controlsCards modulePer card: status, freeze, last-4, alertsFraud alerts, card-control hubs
ACH / A2A transfer eventsTransfers moduleInitiation, status, settlement timestampCash-flow forecasting, payout reconciliation
Bill pay & recurring paymentsBills modulePayee, schedule, last/next runBudgeting apps, subscription audits
RDC mobile deposit statusDeposit Funds modulePer check: image hash, hold release dateLockbox replacement, SMB cash visibility
Alert preferences & profileMy Profile menuPer-channel toggles, contact methodsNotification orchestration, compliance audits

Typical integration scenarios

1. Accounting sync for small-business members

An SMB member with a Freedom CU checking account wants daily transaction sync into QuickBooks Online. Our connector authenticates with the member's consent, polls the statement endpoint for the prior day's posted activity, normalizes the JSON to the FDX Transactions resource shape, and pushes entries into QBO via its banking-feed API. Memo and amount fields are preserved verbatim so reconciliation diff stays clean.

2. PFM and debt aggregation

A PFM aggregator displays the member's current balance, mortgage balance, and auto-loan balance alongside accounts at other institutions. Our integration exposes /accounts, /accounts/{id}/balance, and a derived /accounts/{id}/loan resource, mapping each to FDX Loan and Deposit entities so the aggregator does not need credit-union-specific code paths.

3. Real-time reconciliation for a payroll provider

A payroll provider initiates ACH credits to the member's checking account and needs confirmation when funds post. Our webhook layer subscribes to ACH/A2A status updates, emits a normalized transfer.completed event with the original trace ID, and writes an audit row to the consent log so the payroll provider can prove timely settlement.

4. RDC mobile-deposit lockbox replacement

A non-profit replaces a paper lockbox with member-driven mobile deposit. Our RDC-status polling exposes the deposit ID, the check image hash, the hold-release date, and the current status (pending, accepted, rejected). The non-profit posts each accepted deposit to its donor CRM with the correct gift date — no manual reconciliation.

5. Card-control and fraud-alert hub

A multi-bank card-control hub lets the member freeze a Freedom CU debit card from a single screen. Our integration mirrors the in-app freeze action through an authorized control endpoint and listens for alert events (large transaction, card-not-present, geographic anomaly), reissuing those events on the hub's Kafka topic for fraud teams to action.

Technical implementation

Login & session bind

POST /api/v1/freedom-cu/auth/login
Content-Type: application/json

{
  "member_id": "0001234567",
  "password": "<OBFUSCATED>",
  "device": {
    "app_version": "8.4.1",
    "platform": "android",
    "biometric_bound": true
  }
}

200 OK
{
  "access_token": "eyJraWQ...",
  "refresh_token": "rt_8d3...",
  "expires_in": 1800,
  "scopes": ["balances","statements","transfers","cards"]
}

Statement export (FDX-aligned)

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

{
  "account_id": "S0001",
  "from_date": "2026-04-01",
  "to_date":   "2026-04-30",
  "page_size": 100,
  "format":    "fdx-json"
}

200 OK
{
  "transactions": [
    {
      "transactionId": "tx_5f2a...",
      "postedTimestamp": "2026-04-12T13:04:00Z",
      "amount": -42.18,
      "currency": "USD",
      "description": "PURCHASE - GROCERY 12",
      "category": "GROCERIES",
      "memo": "POS",
      "status": "POSTED"
    }
  ],
  "page": {"next": "cursor_xyz"}
}

Webhook: transfer status

POST {your_callback_url}
X-OFL-Signature: t=1714723200, v1=2c1c...
Content-Type: application/json

{
  "event": "transfer.completed",
  "transfer_id": "tr_a91b...",
  "from_account": "S0001",
  "to_account_external": "ROUTING/ACCT",
  "amount": 250.00,
  "currency": "USD",
  "ach_trace_id": "091000019876543",
  "completed_at": "2026-05-01T17:20:11Z"
}

# Reject if HMAC-SHA256 over (timestamp + "." + body)
# does not match X-OFL-Signature.

Compliance & privacy

Regulatory alignment

US member-financial data is governed by the CFPB Personal Financial Data Rights Rule (Section 1033) and the Gramm-Leach-Bliley Act. In January 2025 the CFPB recognized the Financial Data Exchange (FDX) as a standard-setting body for the US open-banking ecosystem; the Spring 2025 release introduced FDX API v6.4 with a refreshed Consent API behavioral specification. Our deliverables emit FDX-shaped responses, capture machine-readable consent receipts, and support consent revocation in line with the rule's compliance trajectory through 2026.

Practical safeguards

  • Member-authorized access only — no scraping of accounts without explicit consent
  • Scope-limited tokens (balances vs. statements vs. transfers) with TTLs measured in minutes
  • Field-level redaction in logs (PAN, full account number, member SSN)
  • Consent log retained per FDX guidance with revocation timestamps
  • NDAs and signed scope documents available before any protocol analysis begins

Data flow & architecture

A typical pipeline looks like:

  1. Freedom CU Mobile client / member-authorized session — issues a consented OAuth-style token with FDX-aligned scopes.
  2. OpenFinance Lab ingestion gateway — translates Symitar/SymXchange responses into FDX Account, Transaction, and Transfer resource shapes; rate-limits per consent.
  3. Storage / event bus — persists normalized records in your warehouse (Snowflake, BigQuery, Postgres) and publishes transfer.* and rdc.* events on Kafka or webhooks.
  4. Downstream API or analytics — accounting tools, PFM dashboards, fraud engines, or compliance reporters consume the normalized stream without ever holding member credentials.

Market positioning & user profile

Freedom CU Mobile is the retail banking client for Freedom Credit Union, a Massachusetts-headquartered cooperative serving members across Western Massachusetts. The user base is consumer-led — checking and savings members, mortgage and auto-loan borrowers, and small-business owners with personal accounts — and is split across Android and iOS, with a meaningful share of older devices that benefit from the app's Fast Balances widget. Integration buyers tend to be fintech aggregators serving New England members, accounting platforms onboarding SMB credit-union accounts, and non-profits that already accept ACH and want a cleaner mobile-deposit reconciliation path. Compared with national-scale apps, the integration value here is depth: a smaller, well-bounded data model where every field maps cleanly to FDX, and where compliance posture is shaped by US federal rules rather than a patchwork of regional regulators.

Screenshots

Click any thumbnail to view the full-size screen.

Freedom CU Mobile screenshot 1 Freedom CU Mobile screenshot 2 Freedom CU Mobile screenshot 3 Freedom CU Mobile screenshot 4 Freedom CU Mobile screenshot 5 Freedom CU Mobile screenshot 6 Freedom CU Mobile screenshot 7 Freedom CU Mobile screenshot 8

Similar apps & integration landscape

Members and integrators rarely use Freedom CU Mobile in isolation. The apps below sit in the same US credit-union and digital-banking landscape, and most of our clients end up unifying data across two or more of them on the same FDX-aligned pipeline.

Alliant Credit Union

National digital-first credit union. Holds checking, savings, and high-yield account data; teams that integrate Freedom CU Mobile often need a unified statement export across Alliant accounts on the same dashboard.

Eastman Credit Union

Tennessee-based credit union with one of the highest-rated mobile apps in the segment. Similar account / RDC / bill-pay data shape, useful as a comparable reference when scoping a multi-CU rollout.

Delta Community Credit Union

Georgia's largest credit union. Shares the same retail-banking object model — balances, transfers, mobile deposit — and shows up frequently in southern-US aggregator portfolios.

Navy Federal Credit Union

The largest US credit union by assets. When defense-community members carry both Navy Federal and Freedom CU accounts, a normalized FDX feed avoids two integration codepaths.

PenFed Mobile

Pentagon Federal Credit Union's mobile app. Includes loans, cards, and ACH transfer data — a frequent companion in PFM integrations alongside other US credit unions.

Alternatives FCU Mobile

Community development credit union focused on inclusive finance. Same Symitar-style core surface, useful when a regional aggregator wants coverage of CDFI members.

Freedom FCU Mobile Banking

Maryland-based Freedom Federal Credit Union (distinct institution, similar app category). Often confused with Freedom CU Mobile; we routinely build a single connector that disambiguates the two by routing number and BIN.

Freedom CU (PA) / Freedom CU (UT)

Pennsylvania and Utah Freedom Credit Unions ship their own mobile apps and surface comparable account, transfer, and RDC data. Multi-state Freedom-branded coverage is a common scoping question for fintech buyers.

Freedom First Mobile App

Roanoke, Virginia community development credit union. Sits in the same retail-banking integration space and is often included when buyers want broader Mid-Atlantic / Southeast coverage.

About us

OpenFinance Lab is an independent studio focused on protocol analysis and authorized API integration for retail banking, fintech, and credit-union ecosystems. Our engineers have shipped data integrations across Symitar SymXchange, Jack Henry, Fiserv DNA, and Plaid Core Exchange, and we keep up with FDX releases (v4.5 → v6.4) so our exports do not drift from the standard.

  • US credit-union cores: Symitar Episys, Corelation KeyStone, Fiserv
  • FDX-aligned and Plaid-routed integrations, plus member-credentialed flows when authorized
  • Custom Python / Node.js / Go SDKs and contract-tested fixtures
  • Full pipeline: protocol analysis → build → validation → compliance review
  • Source-code delivery from $300 — runnable code and full documentation; pay after delivery upon satisfaction
  • Pay-per-call API billing — hosted endpoint, usage-based pricing, no upfront cost

Contact

Send us the target app and the data points you need (balances, statements, transfers, RDC). We respond with scope, timeline, and a fixed quote within one business day.

Contact page

Engagement workflow

  1. Scope confirmation — pick the data points (balances, transactions, transfers, RDC) and the engagement model.
  2. Protocol analysis & API design — typically 2–5 business days, depending on auth complexity.
  3. Build and internal validation — 3–8 business days with replayable fixtures.
  4. Documentation, samples and test cases — 1–2 business days.
  5. First delivery in 5–15 business days; CFPB / FDX paperwork or third-party approvals can extend timelines.

FAQ

Is integration with Freedom CU Mobile compliant with US open banking rules?

Yes. We design exports around the FDX API specification — recognized by the CFPB in January 2025 as a standard-setting body for the US open banking ecosystem — and align consent capture, scopes, and data minimization with CFPB Section 1033 expectations.

What data can be exported from a Freedom CU Mobile account?

Account balances (current and available), transaction history with paging and date ranges, mortgage and auto-loan balances, card metadata, ACH/A2A transfer history, scheduled bill pay, and Remote Deposit Capture (mobile check deposit) status — exported as JSON, CSV, or OFX.

How long does a typical delivery take?

Usually 5–12 business days for the first API drop covering login, balances, and statement export. Adding RDC mobile-deposit polling and ACH transfer flows typically extends this by 3–5 days.

Do I need member credentials, or can you use FDX/Plaid?

Both modes are supported. We prefer FDX-aligned consent flows or Plaid Core Exchange where the institution exposes them; member-credentialed access uses authorized OAuth-style flows with documented consent and revocation.
📱 Original app overview (appendix)

Freedom CU Mobile is the official retail banking app for Freedom Credit Union (package coop.freedom.imobile), giving members access to their accounts, deposits, transfers, and bill pay from a single mobile experience.

  • Manage Your Accounts — Monitor checking and savings (current and available); view mortgage, auto-loan, and other balances; set up Account Alerts and adjust preferences; manage cards in-app.
  • Quick Access — Touch ID / Face ID for fast and safe sign-in; Fast Balances on the go.
  • Enhanced Navigation — My Profile menu for notifications and personal preferences; navigation tray for top-used features; hamburger menu with full transactional tools.
  • Deposit Funds — Photo-based check deposit; instant view of the processing deposit in your account.
  • Make Transfers and Payments — Transfer between accounts and to other financial institutions; manage bills and recurring payments in one place.
  • Disclosure — The mobile app is free; carrier message and data rates may apply. Some features are only available for eligible account holders and accounts.

Last updated: 2026-05-03