SkyPoint FCU API integration services (FDX / OpenBanking)

Authorized protocol analysis and production-ready API code for SkyPoint Federal Credit Union member data, transactions, and Remote Deposit Capture flows.

From $300 · Pay-per-call available
OpenData · OpenFinance · FDX · Section 1033 · Credit union integration

Connect SkyPoint FCU member accounts and transaction history to your stack — under written authorization

SkyPoint Federal Credit Union ships a Maryland-based credit union mobile banking app built on the IFS Mobile Banking framework (Android package com.ifs.androidmobilebanking.fiid3935). The data that flows through the app — balances, posted and pending transactions, Remote Deposit Capture (RDC) events, electronic funds transfers, bill-pay history, cash-back offers, and ATM/branch geocoordinates — is exactly the surface that downstream personal finance managers, accounting platforms, fraud-monitoring tools and small-business ERPs need to plug into. We deliver that surface as a clean, FDX-aligned API contract.

FDX-aligned account & balance endpoints — Mirror the SkyPoint login and account-list screens with a normalized /accounts and /accounts/{id}/balances response that matches the Financial Data Exchange 6.x schema, so the same client SDK that already speaks to Mountain America or Navy Federal works against SkyPoint data.
Transaction history & statement export — Paged transaction queries with date range, posted/pending split, ACH/RDC/POS classification, and an export pipe to CSV, JSON, OFX 2.x and PDF for tax, reconciliation and audit work.
Remote Deposit Capture & bill-pay events — Webhook-style notifications for RDC submissions, bill-pay scheduling, EFT confirmations and cash-back activations so back-office systems no longer need to scrape PDF statements.

What we deliver

Deliverables checklist

  • OpenAPI 3.1 specification for every endpoint, with sample requests and FDX-mapped fields
  • Protocol & auth flow report (mobile login handshake, token refresh, device fingerprint, MFA challenge)
  • Runnable Python and Node.js reference clients for balance, transaction and statement endpoints
  • Automated regression tests against a sandbox member, plus Postman collection
  • Compliance guide covering CFPB Section 1033, FDX 6.x consent records, GLBA safeguards and Regulation E

Two engagement models

Customers choose between (1) source-code delivery from $300 — runnable API source plus documentation, paid after acceptance — or (2) pay-per-call hosted API billing, where the endpoints are operated by us and metered by request volume. Banks, fintechs and family offices generally start with model 1 to keep data on their own infrastructure, while accounting integrators tend to prefer model 2 for elasticity.

Data available for integration

The matrix below summarizes the data classes a SkyPoint FCU integration can surface, where each class originates inside the mobile app, the granularity you should expect, and the typical downstream use. Field names follow Financial Data Exchange (FDX) conventions where applicable so the output is interchangeable with other US credit union connectors.

Data classSource screen / featureGranularityTypical downstream use
Account list & balancesAccount overview, dashboard tilesPer account, current + available, refreshed on loginPFM dashboards, treasury views, loan-to-deposit ratios
Posted & pending transactionsTransaction history, statement viewPer posting, category, amount, merchant memo, dateBookkeeping sync, expense reports, fraud signal feeds
ACH / EFT transfersElectronic funds transfer screenPer transfer, counterparty masked, status eventsCash-flow forecasting, payroll reconciliation
Remote Deposit Capture (RDC)Mobile check deposit flowPer deposit, check image references, amount, hold statusSMB accounting, deposit audit trail, AR automation
Bill-pay historyBill pay modulePer payee, scheduled/recurring/one-off, confirmation IDsVendor reconciliation, expense classification
Cash-back & offersCash-back offer carouselPer offer, activation status, expiry, merchantLoyalty analytics, marketing attribution
ATM & branch directoryATM/branch locator (CO-OP / Allpoint network)Per location, lat/lng, surcharge-free flag, hoursIn-app finder embeds, route planning, ATM uptime dashboards
FICO score touchpointsFICO Score Open Access modulePer refresh date, score bandUnderwriting prequalification, financial wellness apps

Typical integration scenarios

1. Personal finance manager (PFM) connector

A consumer fintech wants to add SkyPoint Federal Credit Union to its supported-institutions list alongside Navy Federal and PSECU. We expose /auth/start/auth/mfa/accounts/transactions, return the response in the FDX 6.x JSON envelope, and stream a 24-month transaction backfill on first connection. Mapping to the FDX category taxonomy lets the PFM treat SkyPoint data as a drop-in for any other FDX-aligned provider.

2. SMB accounting & reconciliation sync

A QuickBooks-style accounting platform needs a daily pull of cleared transactions and bill-pay confirmations from a member's SkyPoint business checking account. Our connector calls /transactions?since=cursor hourly, emits webhook events for every new posting, and ships an OFX 2.x export endpoint so the same data can feed legacy ERP imports without an in-house parser.

3. Loan-origination prequalification

A non-bank lender wants to prequalify SkyPoint members by combining 90-day cash-flow history with the FICO Score Open Access reading exposed in the app. The integration surfaces a single /risk/snapshot response that bundles inflow/outflow statistics, ACH return frequency and the latest FICO band — derived strictly from member-authorized data, never from credit-bureau pulls without a fresh permissible-purpose record.

4. Tax filing & year-end statement export

SkyPoint promotes a TurboTax workflow in the app. Our statement-export endpoint produces a signed, audit-stamped PDF and a parallel CSV for every calendar quarter, ready to feed into TurboTax, FreeTaxUSA, or a CPA's intake portal. RDC images can be embedded inline so audit trails remain visual, not just numeric.

5. Treasury & fraud monitoring

A community-bank fraud team needs a 5-minute pulse on EFT and ACH activity for a watch-list of business members. We deliver a long-poll /transactions/stream endpoint and a Slack/webhook fan-out so suspicious wire memos, large RDC submissions, or unusual bill-pay payees trigger an analyst review the same minute they post.

Technical implementation

Member authorization (OAuth-style)

POST /api/v1/skypoint/auth/start
Content-Type: application/json

{
  "member_id": "SPFCU-44211",
  "device_fingerprint": "ios:9f02-...-c4",
  "scopes": ["accounts:read","transactions:read","rdc:read"]
}

200 OK
{
  "auth_id": "auth_8f2a",
  "mfa_required": true,
  "mfa_channels": ["sms","app_otp"],
  "expires_in": 300
}

Statement / transaction query (FDX-aligned)

GET /api/v1/skypoint/accounts/{account_id}/transactions
  ?from=2026-01-01&to=2026-03-31&cursor=eyJwIjoi...
Authorization: Bearer <ACCESS_TOKEN>

200 OK
{
  "transactions": [
    {
      "transactionId": "tx_0192a",
      "postedTimestamp": "2026-03-14T15:11:02Z",
      "amount": -42.18,
      "currency": "USD",
      "description": "RDC DEPOSIT - CHECK 1042",
      "category": "TRANSFER",
      "status": "POSTED"
    }
  ],
  "page": {"cursor": "eyJwIjoi...", "hasMore": true}
}

Webhook: RDC & bill-pay events

POST https://your-app.example.com/webhooks/skypoint
X-OFL-Signature: t=1715432101,v1=4a91...

{
  "event": "rdc.deposit.posted",
  "occurred_at": "2026-05-11T13:02:11Z",
  "account_id": "acct_77c1",
  "amount": 1250.00,
  "currency": "USD",
  "hold_release_at": "2026-05-13",
  "check_image_refs": ["img_front_9af1","img_back_9af2"]
}

Error model & idempotency

Every mutating call accepts an Idempotency-Key header and returns the original response on retry. Failure shape follows RFC 7807 (application/problem+json) with a stable type URI, so consumers can switch error-handling on a machine-readable token rather than parsing English messages.

Compliance & privacy

Regulatory alignment

SkyPoint FCU is a US credit union, so member-data integrations sit at the intersection of three regulatory anchors. The first is the CFPB Section 1033 Personal Financial Data Rights rule, finalized in October 2024 and currently in an "accelerated rulemaking" revision phase after the July 2025 CFPB filing. The second is the Financial Data Exchange (FDX) API standard, which the CFPB officially recognized as a standard-setting body in January 2025 and which already carries 114+ million US consumer-account connections. The third anchor is the long-standing Gramm-Leach-Bliley Act (GLBA) safeguards rule for financial-institution data handling.

How we apply it on a SkyPoint job

We only operate under explicit member authorization or documented public/authorized endpoints. Every connector ships with a consent ledger (who authorized, what scope, when revoked), encrypts member identifiers at rest, and minimizes payloads to the scopes the consumer actually requested. SkyPoint's own privacy policy is referenced in the consent UI so members see the same language across both surfaces. Because credit unions under $850M in assets sit in a deferred Section 1033 implementation tier, we design every connector to be "1033-ready" without forcing premature compliance work on the credit union itself.

Data flow & architecture

The reference pipeline is intentionally short:

  1. Client app or partner backend — issues an authorization request on behalf of the member, stores the consent token.
  2. OpenFinance Lab connector (ingest) — replays the SkyPoint mobile protocol against the credit union's edge, normalizes responses into FDX 6.x JSON.
  3. Encrypted storage / cache — short-lived hot cache (Redis or Postgres) for delta queries; long-term storage is opt-in and member-scoped.
  4. API / webhook output — REST endpoints for pull, signed webhooks for push, OFX/CSV/PDF exports for legacy consumers.

This keeps SkyPoint's edge in control of every authentication step while delivering a uniform downstream contract; no scraped HTML is ever cached, and consent revocation propagates through the cache within 60 seconds.

Market positioning & user profile

SkyPoint Federal Credit Union is a Maryland-headquartered community credit union serving members across the Washington DC metro area, with a free Android and iOS app rated as a mainstream consumer mobile banking client. Primary users are B2C — individual checking, savings and loan customers — supplemented by small-business members who use bill pay, RDC and EFT as their daily-operations toolkit. Device focus is mainstream US smartphones, with Wear OS support on the smartwatch tier and a parallel iOS app for Apple Watch glances. Integrators typically target SkyPoint as part of a broader "US credit union coverage" expansion alongside larger players like Navy Federal and PenFed, where adding a community-tier credit union demonstrably improves coverage for the DC/Maryland/Virginia corridor.

Screenshots

Click any thumbnail to view a larger version. Each screen below maps to one or more data classes in the Data available for integration matrix above.

SkyPoint FCU screenshot 1 SkyPoint FCU screenshot 2 SkyPoint FCU screenshot 3 SkyPoint FCU screenshot 4 SkyPoint FCU screenshot 5 SkyPoint FCU screenshot 6 SkyPoint FCU screenshot 7 SkyPoint FCU screenshot 8 SkyPoint FCU screenshot 9 SkyPoint FCU screenshot 10

Similar apps & integration landscape

Teams expanding US credit union coverage typically integrate SkyPoint FCU alongside the apps below. Each represents a comparable data shape — accounts, transactions, RDC, bill pay — so a single FDX-aligned client can address the whole list with mostly per-institution adapter work. Section context only, no ranking implied.

  • Navy Federal Credit Union — the largest US credit union app; users who also keep a SkyPoint account often need unified transaction exports across both for household budgeting.
  • PenFed Credit Union — strong cards and mortgage product set; integrations frequently roll PenFed and SkyPoint together for cross-credit-union loan analytics.
  • Alliant Credit Union — well-regarded mobile app with built-in budgeting; appears on most "best credit union app" shortlists alongside community institutions like SkyPoint.
  • PSECU (Pennsylvania State Employees Credit Union) — large state-employee credit union with similar bill-pay and RDC flows; common pair in mid-Atlantic coverage maps.
  • Eastman Credit Union — frequently cited as the highest-rated US credit union app; useful as a reference UX when designing SkyPoint integrations.
  • Delta Community Credit Union — Atlanta-based with broad mobile feature parity; integrators bundle Delta and SkyPoint for southeast + DC-metro coverage.
  • Redstone Federal Credit Union — Alabama-headquartered with active mobile development; another data shape that maps cleanly to an FDX 6.x adapter.
  • ESL Federal Credit Union — upstate New York credit union with a polished mobile app; commonly listed beside community credit unions in PFM coverage tables.
  • Wright-Patt Credit Union — Ohio-based with smartwatch features comparable to SkyPoint's Wear OS module.
  • Mountain America Credit Union — an active FDX member institution; pairing SkyPoint with Mountain America is a fast way for a fintech to publish "FDX-aligned credit union coverage" claims with two independent providers.
  • Alternatives FCU — Ithaca-based community credit union; similar member-data shape, useful for testing FDX schemas against smaller institutions.

About our studio

OpenFinance Lab is an independent technical studio specializing in mobile app interface integration and authorized API delivery for global financial clients. Our engineers come from US and EU banks, payment processors, protocol-analysis vendors, and cloud-platform teams. We have shipped credit-union and retail-banking connectors against more than 40 US institutions and routinely work with PFM startups, accounting platforms, and small-business ERPs that need FDX-aligned data plumbing.

  • End-to-end pipeline: protocol analysis → API design → build → validation → compliance review
  • Native fluency with FDX 6.x, OFX 2.x, OAuth 2.1, and webhook-based event streams
  • Source-code delivery from $300 — runnable API source plus full documentation, paid after acceptance
  • Pay-per-call hosted API billing — no upfront cost, usage-metered, ideal for teams that prefer OPEX over CAPEX
  • NDAs, data-minimization controls, and consent-ledger templates on every engagement

Contact

For quotes, sandbox requests, or to scope a SkyPoint FCU connector against your existing FDX or PFM client, open our contact page below. Include the data classes you need (balances, transactions, RDC, bill pay, etc.) and the engagement model you prefer.

Open contact page

Engagement workflow

  1. Scope confirmation — which data classes, which engagement model, target FDX schema version.
  2. Protocol analysis & API design — 2 to 5 business days, complexity-dependent.
  3. Build & internal validation against a member sandbox — 3 to 8 business days.
  4. Documentation, sample clients, and test cases — 1 to 2 business days.
  5. Handover & acceptance — typical first delivery in 5 to 15 business days; third-party approvals (FDX certification, partner reviews) may extend the timeline.

FAQ

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

The target app name (already provided), a written description of the data you need (balances, transactions, RDC events, bill-pay history, ATM locator data), authorized member credentials or sandbox access, and a short note on whether you require FDX-aligned output or a custom JSON schema.

How long does delivery take for a credit union mobile banking integration?

A first API drop for login, balance and 90-day transaction export typically takes 5 to 12 business days. Adding Remote Deposit Capture, bill-pay history and webhook notifications usually extends the timeline to 3 to 5 weeks.

How do you handle compliance with US open banking and Section 1033?

We work under explicit member authorization or documented public/authorized APIs, log every consent event, follow the FDX 6.x data schema where possible and align with the CFPB Section 1033 Personal Financial Data Rights rule. NDAs and data-minimization controls are applied on request.
📱 Original app overview (appendix)

SkyPoint Federal Credit Union's free Android Mobile Banking app lets members bank on the go with secure transactions, accessing and controlling all their SkyPoint accounts directly from an Android phone, tablet, or Wear OS device. SkyPoint is a Maryland-based credit union, and the app is built on the IFS Mobile Banking framework (Android package com.ifs.androidmobilebanking.fiid3935, Apple App Store ID 432545192).

Mobile banking services accessible through the app include:

  • Account balance and history
  • Remote Deposit Capture (mobile check deposit)
  • Electronic funds transfer between SkyPoint accounts
  • Bill pay
  • View and activate cash-back offers
  • ATM and branch locator (covering SkyPoint branches plus a wider surcharge-free ATM network of 80,000+ machines)
  • Wear OS smartwatch banking — quick balance and last-five-transactions glance

SkyPoint also surfaces additional online-banking modules from its web banking platform — Money Management for budgeting, FICO® Score Open Access readings, a TurboTax workflow, and online statements — which together form the broader data footprint a third-party integrator can map to OpenData/OpenFinance endpoints under member authorization. Privacy practices are described on the credit union's privacy disclosures page.

Last updated: 2026-05-11