Wymar Federal Credit Union API & OpenBanking integration

It's Me 247 protocol analysis, member balance and statement APIs, mobile deposit hooks and FDX-style data export for the Wymar FCU mobile app.

From $300 · Pay-per-call available
OpenData · OpenBanking · It's Me 247 · CU*BASE protocol analysis

Connect Wymar FCU member accounts, balances and statements to your stack — under authorized consent

Wymar Federal Credit Union, headquartered in Geismar, Louisiana, runs on the CU*Answers It's Me 247 online banking platform layered on CU*BASE core. Its mobile app exposes balance lookups, transaction history, mobile remote deposit capture (mRDC), bill pay and member-to-member transfers. We deliver compliant API shims around these flows so a third-party finance app, ERP or aggregator can read member data without scraping fragile web forms.

Account & session APIs — Mirror the It's Me 247 login challenge, multi-factor verification and session refresh so downstream services can stay authorized without re-prompting members every hour.
Balance & sub-account APIs — Pull share, share draft (checking), money market, certificate (CD) and loan balances with running ledger balance, available balance and hold totals.
Statement & transaction export — Paginated transaction history with date ranges, transaction codes, descriptions and counterparties; export to OFX, CSV, JSON or PDF.
Mobile deposit & transfers — Programmatic mRDC submission, status polling for the new instant-deposit path for checks under $500, plus internal and Nationwide CU Access shared-branch transfers.

Feature modules we deliver

Member login & MFA

An authenticated session layer that wraps the It's Me 247 login challenge. Members consent once; the integration stores a refreshable token and replays MFA challenges only when CU*Answers requires step-up. Used by personal-finance dashboards that want a stable connection without daily re-auth friction.

Balance & account list

One call returns every share, share draft, money market, certificate and loan attached to a member number, including type code, nickname, available balance, current balance and pledge holds. Useful for net-worth dashboards and Personal Finance aggregation parity with the It's Me 247 "link external accounts" feature.

Transaction history & statement

Date-bounded transaction lists with transaction code, posted date, effective date, description, ACH counterparty, amount and running balance. Pages stably so reconciliation jobs can re-pull last 90 days without duplicates. Cross-month statement exports map cleanly to FDX 5.x objects for aggregator handoff.

Mobile remote deposit capture

A submission endpoint that accepts front/back check images plus the destination share, returns a deposit ticket id and emits a webhook when funds clear. Implements the 2024–2025 Wymar instant-deposit path for checks under $500 with no scheduled processing wait, and the standard hold schedule for larger checks.

Transfers & Nationwide CU Access

Member-to-member, member-to-self and shared-branch transfers through the Nationwide CU Access partnership that lets Wymar members transact at roughly 5,000 partner branches. The API normalizes routing, fee schedules and posting windows so back-office systems do not need to model each network separately.

Bill pay & scheduled payments

Read scheduled and recurring bill payments, post one-time payments and cancel pending items. Mirrors the It's Me 247 Bill Pay capabilities so finance copilots can suggest "pay this on the 1st" without dropping members back into the native app.

Data available for integration

Wymar FCU's mobile experience surfaces a focused set of structured member data. The table below maps each data class to its source screen, typical granularity and the downstream use case where it pays for itself.

Data typeSource (screen / feature)GranularityTypical use
Member profileIt's Me 247 "My Info" / contactPer member number; name, address, email, phoneKYC refresh, marketing suppression lists
Account list & balancesAccount summary screenPer sub-account (share, draft, CD, loan)Net-worth dashboards, balance alerts
Transaction historyAccount detail / statementPer posting line, daily; codes & descriptionsBookkeeping, reconciliation, expense analytics
Statements (PDF)eStatements moduleMonthly per accountAudit trails, mortgage underwriting
Bill-pay payees & scheduleIt's Me 247 Bill PayPer payee, per scheduled paymentCashflow forecasting, smart-pay copilots
Mobile deposit historymRDC modulePer check, image + statusFunds-availability prediction, hold tracking
Loan & CD termsLoan / certificate detailPer loan / per certificate; rate, term, payoffDebt consolidation analysis, maturity alerts
Shared-branch activityNationwide CU AccessPer transaction; partner branch idTravel-aware fraud rules, branch heatmaps

Typical integration scenarios

1. Personal-finance aggregation parity

Context: A Wymar member uses a budgeting app and wants their FCU accounts to refresh as reliably as their megabank accounts. Data / API: account list, transaction history (90 days rolling), and statement PDF. OpenFinance mapping: emits FDX accounts, transactions and statements resources; the aggregator consumes them through a standard OAuth-style token rather than screen-scraping It's Me 247.

2. Small-business bookkeeping sync

Context: A Geismar-area contractor banks a business checking and an auto loan at Wymar and runs QuickBooks. Data / API: transaction history with full memo lines, bill-pay schedule, and loan amortization. OpenData mapping: nightly export pushes posted transactions to QuickBooks Online via OFX, while loan amortization feeds a "long-term liabilities" worksheet so the member's books reconcile without manual entry.

3. Funds-availability copilot for mobile deposits

Context: Members want to know when a deposited check will clear so they can avoid overdrafts. Data / API: mRDC submission, deposit status webhook, and hold schedule. OpenFinance mapping: the webhook fan-outs into a member-facing notification that distinguishes the 2024–2025 instant path for sub-$500 checks from the standard hold path, with cleared/available timestamps surfaced as ISO-8601 fields.

4. Mortgage underwriting evidence

Context: A member applies for a mortgage at a third-party lender and needs to share two months of statements plus current balance. Data / API: consented statement export and a point-in-time balance snapshot. OpenBanking mapping: a one-shot consent issues a short-lived token; the lender pulls FDX-shaped statements and an accountVerification object, then the token expires. No password ever leaves the member's hands.

5. Member-360 dashboard for back-office staff

Context: A Wymar service representative wants one screen showing every product a member holds plus their last 30 days of activity across share, share draft, loan and Nationwide CU Access transactions. Data / API: account list, transaction stream, and shared-branch activity. OpenData mapping: normalized event objects flow into the credit union's CRM so reps can see context without bouncing between CU*BASE GOLD windows.

Technical implementation

The implementation usually sits as a thin OAuth-style gateway in front of the member's authorized It's Me 247 session. Three snippets below illustrate the core surfaces — authentication, statement query and a deposit webhook — with field names that mirror what you actually see in CU*Answers integrations and FDX.

1) Member login & token exchange

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

{
  "member_number": "0123456",
  "credential": "<encrypted>",
  "device_id": "ios-9F2A-..."
}

200 OK
{
  "access_token": "eyJhbGciOi...",
  "refresh_token": "rt_8c1...",
  "expires_in": 1800,
  "mfa_required": false,
  "session_scope": ["accounts.read", "transactions.read", "deposit.write"]
}

2) Statement / transaction query

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

{
  "account_id": "SH-000",
  "from_date": "2026-03-01",
  "to_date":   "2026-04-30",
  "page": 1,
  "page_size": 100,
  "format": "fdx"
}

200 OK
{
  "account": {"id":"SH-000","type":"SHARE","available_balance":1842.55},
  "transactions": [
    {"posted":"2026-04-28","amount":-42.10,"code":"DEBIT_CARD",
     "description":"ROUSES MARKET GEISMAR LA","running_balance":1842.55},
    ...
  ],
  "page_info": {"page":1, "has_more":true, "next_cursor":"c2..."}
}

3) Mobile deposit webhook

POST https://your-app.example/hooks/wymarfcu
X-Signature: sha256=...

{
  "event": "mrdc.deposit.cleared",
  "deposit_id": "mrdc_9f12",
  "member_number": "0123456",
  "account_id": "SH-010",
  "amount": 312.75,
  "path": "instant_under_500",
  "submitted_at": "2026-05-09T14:02:11Z",
  "available_at": "2026-05-09T14:02:14Z"
}

// Verify HMAC, then post to ledger.
// Retries: exponential, 5 attempts, idempotency key = deposit_id.

Auth uses short-lived bearer tokens with a refresh window, request bodies are JSON, and webhooks are HMAC-signed. Errors follow a stable envelope (code, message, retriable) so client SDKs can implement back-off without parsing English strings. We also ship a sandbox seed with one member, three sub-accounts, and a 12-month transaction history that covers ACH, debit card, share-draft and Nationwide CU Access lines.

Compliance & privacy

Regulatory posture

Integrations are designed to align with the U.S. open-banking direction set by the CFPB Personal Financial Data Rights Rule (Section 1033). The CFPB stayed the tiered compliance schedule in July 2025 and opened an accelerated rulemaking in late 2025, so production integrations follow the spirit of the rule — consumer consent, revocability, secure developer interfaces — without assuming a fixed date. Smaller credit unions (≤ $850M in assets, which includes Wymar) are explicitly out of the mandatory compliance bucket, but adopting the same shape now means the data is portable when the rule resettles.

Privacy & security controls

  • Member consent recorded with scope, timestamp and revocation endpoint (GLBA-aligned).
  • NCUA Part 748 security-program expectations baked into the deployment guide.
  • Data minimization: only the requested fields leave the gateway; full transaction blobs stay inside.
  • BSA / AML hooks for transaction streams that feed monitoring tools.
  • FDX schema mapping so aggregator hand-offs avoid bespoke field translation.

Data flow & architecture

A typical Wymar FCU integration pipeline looks like:

  1. Member-facing client (mobile app, web dashboard, accounting tool) requests data.
  2. Consent & auth gateway performs OAuth-style token exchange and stores scope + revocation state.
  3. Protocol adapter replays the It's Me 247 / CU*BASE session, normalizes balances, transactions and deposit events.
  4. FDX-shaped storage persists last-N-days of transactions and statement PDFs with idempotent keys.
  5. Egress APIs & webhooks serve aggregators, ERPs and member-facing analytics, signed and rate-limited.

The adapter is the only component that touches credentials; everything downstream sees only tokenized references and FDX-shaped objects, which keeps the blast radius small if a partner key leaks.

Market positioning & user profile

Wymar Federal Credit Union is a community credit union headquartered in Geismar, Louisiana, serving members who live, work, worship or attend school in Ascension Parish and surrounding industrial corridors. Membership skews toward retail consumers and small-business owners tied to the area's petrochemical employers, supported by a small set of physical branches plus a nationwide presence through Nationwide CU Access and CO-OP-style shared-branch arrangements. Mobile-first delivery is on Android and iOS via the It's Me 247 app; desktop members hit the same platform on the web. Demand from third parties for Wymar data tends to come from local accountants, mortgage brokers and the personal-finance aggregators that members already use elsewhere — exactly the use cases U.S. open banking under CFPB Section 1033 is designed to enable.

Screenshots

Click any thumbnail to view a larger version.

Wymar Federal Credit Union screenshot 1 Wymar Federal Credit Union screenshot 2 Wymar Federal Credit Union screenshot 3 Wymar Federal Credit Union screenshot 4

Similar apps & integration landscape

Members who hold accounts at Wymar FCU often also bank with one of the institutions below. Each is included to show how the same OpenBanking patterns apply across the U.S. credit-union ecosystem; we do not rank or critique them.

Alliant Credit Union — Chicago-based, online-only credit union with a deep mobile feature set; integration interest centers on transaction export and external-account linking parity.
PenFed Credit Union — Nationwide credit union with strong consumer-loan and credit-card data; common request is unified loan-balance pulls alongside other member accounts.
Navy Federal Credit Union — Largest U.S. credit union, with a 360-degree member dashboard; integration scenarios typically involve FDX-aligned account and statement feeds for personal-finance copilots.
Delta Community Credit Union — Georgia's largest credit union, highly rated mobile app; users frequently consolidate Delta and another credit-union account in a single budgeting tool.
ESL Federal Credit Union — Rochester, NY institution with top-tier app ratings; relevant for cross-CU statement aggregation patterns.
Andrews Federal Credit Union — Known for high-yield rewards checking; integrations typically focus on transaction-stream classification for the reward criteria.
Credit Union 1 — Multi-state credit union; relevant when a member moves between regions and needs unified transaction history.
Heartland Credit Union — Another It's Me 247 / CU*Answers platform user; integration shapes overlap closely with Wymar's CU*BASE-backed flows.
Muskegon Federal Credit Union — Smaller It's Me 247 deployment; demonstrates that the same adapter pattern scales down to community-CU footprints.
Safe Harbor Credit Union — Michigan-based It's Me 247 user; useful reference when documenting member-consent flows shared across CU*Answers institutions.

About us

OpenFinance Lab is an independent studio focused on mobile-app protocol analysis and OpenBanking/OpenData integration. The team blends engineers from U.S. community banks, credit-union service organizations, payment gateways and cloud platforms, and ships compliant API layers that other shops won't touch because they require careful consent and regulator-aware design.

  • Credit union and community-bank integrations, including CU*BASE / It's Me 247 deployments.
  • FDX 5.x schema work for aggregators, fintechs and Section 1033-aware client apps.
  • Custom Python, Node.js and Go SDKs plus test harnesses with sandbox seed data.
  • End-to-end pipeline: protocol analysis → build → validation → compliance review.
  • Source code delivery from $300 — runnable API source code and full documentation, paid only after delivery upon satisfaction.
  • Pay-per-call API billing — hosted endpoints with usage-based pricing and no upfront fee.

Contact

For quotes, NDAs or to submit your Wymar FCU integration scope (data types, expected call volume, hosting preference), open our contact page.

Contact page

Engagement workflow

  1. Scope confirmation: which data types and which screens of the Wymar FCU app you need exposed (login, balances, statements, mRDC, transfers).
  2. Protocol analysis and API design (2–5 business days), covering It's Me 247 challenge flow and CU*BASE field mapping.
  3. Build and internal validation (3–8 business days), with sandbox member seed.
  4. Docs, code samples, OpenAPI spec and test cases (1–2 business days).
  5. Hand-off and pilot: typical first delivery 5–15 business days; institutional approvals can extend timelines.

FAQ

What do you need from me to start a Wymar FCU integration?

The target app name (already provided), the concrete data you want exposed (transactions, balances, statements, transfers, deposit confirmations), and either a sandbox member account or production credentials you are authorized to use. We can also work with an existing It's Me 247 / CU*BASE export if your institution has one.

How long does a first Wymar FCU API delivery take?

A first usable drop covering login, balance and transaction history typically takes 5 to 12 business days. Adding mobile remote deposit capture, bill pay, or shared-branch reconciliation can extend the timeline by another one to two weeks.

How do you handle compliance for credit-union data?

We work under authorized member consent or documented public APIs only. Designs follow NCUA, GLBA and the CFPB Section 1033 Personal Financial Data Rights direction, with consent logging, data minimization and FDX-aligned schemas. NDAs are signed when required and PII is encrypted at rest and in transit.

Can you export Wymar FCU statements to accounting tools?

Yes. We deliver transaction and statement endpoints that emit OFX, CSV, JSON or PDF, plus connectors for QuickBooks, Xero and generic ERP intake. Date-range pagination and idempotent re-pulls are included so reconciliations stay clean.
📱 Original app overview (appendix)

Wymar Federal Credit Union's mobile app, published under package id com.wymarfcu.wymarfcu, gives members convenient access to the credit union's mobile website, mobile banking platform, branch and contact information, and help. It is the front door to a community credit union headquartered in Geismar, Louisiana, with a small branch footprint plus nationwide reach via the Nationwide CU Access shared-branch network.

  • Sign in to It's Me 247 online banking on Apple and Android devices.
  • Check balances, view transactions and transfer funds between share, share draft, money market and certificate accounts.
  • Pay bills online with one-time or recurring schedules, including AutoPay on selected dates.
  • Deposit checks via mobile remote deposit capture; the 2024–2025 update added an instant path for checks under $500 with no scheduled processing wait.
  • Submit loan applications and open additional accounts without visiting a branch.
  • Use the Personal Finance tab to link and view external accounts from other institutions for a full financial picture.
  • Locate branches and ATMs nationwide through the CU Access partnership.
  • Access help, contact information and member services directly from the app.

Last updated: 2026-05-10