Behind the Everglades FCU app sits CU*BASE — the cooperative core the credit union runs through CU*SOUTH — and that single fact decides how a third party reaches member records. Members never touch the core directly. They touch It's Me 247, the shared online and mobile front-end, and everything an integrator wants lives one authenticated hop behind it: balances, transaction lines, transfers, bill pay, mobile check deposits, statements.
The short version: this is a small single-charter credit union on a widely deployed cooperative core, so the account model is familiar and the data is rich, but it is all gated by a member login. For most projects the practical opening move is member-consented aggregation, with authorized traffic analysis held back for the fields an aggregator won't normalize. The rest of this page walks the data, the routes, and what we hand over.
Member data the app actually surfaces
Field names below follow how It's Me 247 and CU*BASE present them; exact response keys are confirmed against a consenting member session during the build.
| Data domain | Where it originates in the app | Granularity | What an integrator does with it |
|---|---|---|---|
| Share & loan balances | It's Me 247 account summary | Per suffix, available + current, near-real-time | Net-position views, balance checks, low-balance triggers |
| Transaction history | Account history view | Per entry: date, amount, description, running balance | Categorization, reconciliation, cash-flow analysis |
| Transfers | Funds-transfer screen | One-off and scheduled, between suffixes | Move-money automation, sweep rules |
| Bill pay | Online bill-pay service (enrolled members) | Payee list, payment amounts and status | Payment-status sync, payee mirroring |
| Remote deposit | Mobile check deposit (RDC) | Deposit events and clearing status | Deposit confirmation feeds, hold tracking |
| eStatements | CU*Spy document vault | Monthly PDF, account-level | Statement retrieval, income/asset verification |
| Card controls | Mobile card-control feature | Card on/off state, alert settings | Card-status integration in member dashboards |
Getting the data out, the authorized way
Three routes genuinely apply here. None of them depend on anything the credit union has to publish first — they depend on the member's authorization and on how durable a given surface is.
Member-consented aggregation
A US data aggregator — MX, Plaid, Finicity or Yodlee — connects to It's Me 247 once the member consents. MX carries the deepest credit-union network of the four and powers a lot of CU-side data tooling, so a CU*Answers front-end like It's Me 247 is a familiar endpoint inside it. Reachable: balances and transactions reliably, statements and bill-pay status depending on the aggregator's coverage of this specific credit union. We stand up the aggregator account, the member-consent flow and the token handling as part of the work.
Authorized interface analysis
For fields an aggregator flattens or skips — a pending RDC deposit, a particular eStatement, card on/off state — we analyze the app's own authenticated traffic to It's Me 247 under the member's authorization and build a parser against it. Reachable: anything the member can see. The trade-off is durability, since the front-end can shift; we account for that in maintenance.
Document retrieval
Where a clean monthly history is all that's needed, the eStatement PDFs in the CU*Spy vault are the least fragile thing to read. Low effort, high stability, but statement-grained rather than live.
If we were scoping this today, the build we'd start with is consented aggregation through MX, because its credit-union coverage is the bet most likely to land Everglades FCU cleanly. Authorized traffic analysis is what we reach for when a member can see a field the aggregator drops, and the eStatement path is there for verification work where a live session would be overkill. Which combination we actually ship depends on what your product needs to read.
What you receive
Every engagement produces source you can run and read, tied to the surfaces above — not a slide deck. For Everglades FCU that means:
- An OpenAPI/Swagger specification describing the normalized endpoints — accounts, transactions, transfers, statements — as your systems would call them.
- A protocol and auth-flow report: the It's Me 247 login, session/token lifecycle, and how a consent renewal is timed before expiry.
- Runnable source for the key calls in Python or Node.js — account summary, history pull, statement fetch — with the suffix-based account model already mapped.
- Automated tests against captured responses, so a front-end change shows up as a failing test rather than a silent gap.
- Interface documentation plus data-retention and consent-logging guidance fit for an NCUA-supervised member relationship.
A balance-and-history pull, sketched
Illustrative only — host and field names are confirmed against a consenting member session during the build, not guaranteed by the credit union.
import requests
BASE = "https://itsme247.example" # per-CU It's Me 247 host
def open_session(member, secret):
r = requests.post(f"{BASE}/auth/login",
json={"cu": "evergladesfcu",
"user": member, "credential": secret})
r.raise_for_status()
return r.json()["session_token"] # short-lived; renew before expiry
def accounts(token):
r = requests.get(f"{BASE}/v1/accounts",
headers={"Authorization": f"Bearer {token}"})
if r.status_code == 401:
raise SessionExpired # re-auth; never hammer the portal
# CU*BASE keys money by suffix off one membership, not flat numbers
return [{"suffix": a["suffix"], "kind": a["share_or_loan"],
"available": a["available"], "currency": "USD"}
for a in r.json()["accounts"]]
def history(token, suffix, since):
r = requests.get(f"{BASE}/v1/accounts/{suffix}/history",
headers={"Authorization": f"Bearer {token}"},
params={"from": since})
return r.json()["entries"] # date, amount, description, balance
Where integrators put this to work
- A budgeting or PFM app syncing a member's Everglades FCU balances and categorized transactions on a nightly schedule.
- A lender pulling eStatement-backed transaction history for income and asset verification, without standing up a permanent live feed.
- A small-business accounting tool reconciling a member's transfers and bill-pay history against its own ledger.
- A member dashboard mirroring remote-deposit status and card on/off state alongside accounts held elsewhere.
Consent and who's watching
Everglades FCU is a federal credit union, federally insured by the NCUA as its own materials state, and that supervision — not a live open-banking mandate — is the backdrop. The US has no in-force rule compelling a credit union this size to hand member data to third parties. The CFPB's Personal Financial Data Rights rule (Part 1033) was finalized in late 2024, but a federal court has enjoined its enforcement while the Bureau reconsiders the rule, so we treat it as a direction of travel, not current law. What every build rests on is the member's own authorization — the same It's Me 247 login they already use — captured as explicit, revocable consent. We read only the fields a project needs, log access, keep consent records, and work under an NDA where the engagement calls for one.
Engineering realities of a shared-core credit union
Two or three things shape this build, and we plan around them rather than hand them to you as homework. Access to a sandbox or a consenting test account is something we arrange with the credit union or the member during onboarding, not a checklist you clear before we start.
- The suffix account model. CU*BASE keys a member's money by account suffix — share and loan sub-accounts hanging off one membership — rather than by discrete account numbers. We model that structure up front; getting it wrong is how a transfer lands against the wrong sub-account.
- Front-end drift. Because It's Me 247 enhancements roll out to every member automatically once CU*Answers ships them, the surfaces we read can change without notice. We budget a periodic check against the live flows and refresh selectors and parsers before a release breaks anything downstream.
- Session and consent timing. Member sessions and aggregator consents are short-lived by design. We time the sync to renew authorization ahead of expiry, so a long-running feed doesn't quietly go dark mid-month.
Screens we mapped
From the app's store listing — the member surfaces an integration reads against.
Other credit-union apps in the same orbit
A unified integration usually has to speak to more than one institution. These are real same-category apps an aggregation or money-movement product would reach alongside Everglades FCU; the names widen the picture, not a ranking.
- Suncoast Credit Union (SunMobile) — Florida's largest CU; balances, cleared checks and transfers behind a member login.
- MIDFLORIDA Credit Union — accounts, bill pay, mobile deposit plus round-up savings and budgeting data.
- Florida Credit Union — standard member-portal data: balances, transactions, transfers, deposit capture.
- Achieva Credit Union — Tampa Bay member accounts, payments and statement data.
- Campus USA Credit Union — North-Central Florida member banking with the usual account and transaction surfaces.
- Alliant Credit Union — digital-first CU with balances, transfers, deposit and ATM data.
- Revity Federal Credit Union — another It's Me 247 institution, so a near-identical front-end shape to map.
- Preferred Credit Union — It's Me 247 online and mobile banking over a CU*BASE core.
- Heartland Credit Union — It's Me 247 member banking; transactions, transfers and eStatements.
What we checked, and the sources behind it
This brief was put together on 11 June 2026 from the app's own store listing and description, the credit union's stated NCUA insurance, the CU*SOUTH announcement of Everglades FCU's core contract, CU*Answers' documentation of the It's Me 247 mobile app, and the CFPB's own page on the §1033 reconsideration. Primary sources:
- CU*SOUTH — Everglades FCU core contract announcement
- CU*Answers — It's Me 247 mobile app
- Everglades Federal CU — Google Play listing
- CFPB — Personal Financial Data Rights (§1033) status
Mapped and written by the OpenBanking Studio integration desk, 11 June 2026.
Questions integrators ask about Everglades FCU
Which Everglades FCU screens hold data worth integrating?
The It's Me 247 member area is where the value sits: account balances across share and loan suffixes, dated transaction history, transfers between accounts, bill-pay payees and payment status, remote-deposit (mobile check) events, card on/off controls, and monthly eStatements. Those are the surfaces an integrator would normalize and sync.
Does Everglades FCU running on CU*BASE through CU*SOUTH change the integration?
Yes, in a helpful way. Everglades FCU runs the CU*BASE core through the CU*SOUTH cooperative, and members reach it through It's Me 247, a front-end shared by many credit unions. That means the account model is well understood — money is keyed by suffix off one membership — but we still map this credit union's specific instance rather than assume a generic schema.
Is Everglades FCU required by a US open-banking rule to share member data?
No live mandate forces it. The CFPB's Personal Financial Data Rights rule (Part 1033) was finalized in late 2024 but a federal court has enjoined enforcement while the Bureau reconsiders it, so it is not current law. Everglades FCU is NCUA-supervised, and every build we run rests on the member's own explicit, revocable authorization rather than on a rule.
Can member statements be retrieved without keeping a live login open?
Often, yes. Monthly eStatements stored in the CU*Spy document vault are stable PDFs, so for clean historical balances and transaction lines a document-retrieval path is frequently less fragile than a live session — useful for income or asset verification where a session-based pull would be overkill.
Most Everglades FCU builds we scope land inside a week or two. You can take it as source you own outright — runnable endpoints, the auth-flow write-up, tests and interface docs, from $300, invoiced only once you've checked it works — or skip owning the code and call our hosted endpoints instead, paying per call with nothing upfront. Tell us the app and what you need from its data at /contact.html and we'll map the route.
App profile — Everglades Federal CU
Everglades Federal CU is the mobile banking app of Everglades Federal Credit Union, a credit union based in Clewiston, Florida, federally insured by the NCUA per its own description. Published for Android (package com.evergladesfcu.evergladesfcu, per its Play Store listing) and iOS, it lets members check balances, view transactions, transfer funds, pay bills and deposit checks remotely. The credit union runs the CU*BASE core through the CU*SOUTH cooperative, with members served by the It's Me 247 online and mobile banking platform. This page is an independent integration write-up and is not affiliated with or endorsed by the credit union.