Money Manager (Realbyte) API integration & data export

Turn double-entry bookkeeping data into a clean, OpenFinance-ready API for accounting, BI, and personal-finance dashboards

From $300 · Pay-per-call available
OpenData · OpenFinance · Protocol analysis · Personal-finance integration

Bring Money Manager's transactions, budgets, and accounts into your stack

Money Manager (Remove Ads) by Realbyte (package com.realbyteapps.moneya) holds a structured ledger of every income, expense, transfer, and budget entry a user records. We expose that ledger through a documented HTTP API so that accounting back-offices, personal-finance dashboards, robo-advisors, and tax tools can consume it without forcing users to retype anything.

Transaction history endpoint — Paginated, filterable by account, category, sub-category, currency, or date range; returns the same double-entry pairs the app records when an income or expense is logged.
Budget & envelope sync — Read weekly, monthly, and annual budgets per category, including remaining balance and rollover behavior, for comparison against bank-side spend.
Account & card schedule — Cash, bank, debit and credit card accounts with settlement dates and outstanding-balance projections used by the asset tab.
Backup ingestion — Read Excel and Google Drive backups directly, including the 2024 sub-currency Excel format introduced by Realbyte for multi-FX households.

What we deliver

Deliverables checklist

  • OpenAPI 3.1 specification covering accounts, transactions, budgets, recurring entries, and backup ingestion
  • Protocol report on the Money Manager Excel/JSON backup schema and the Wi-Fi PC Manager channel
  • Runnable reference implementation in Python (FastAPI) and Node.js (NestJS), including a parser for the sub-currency Excel format
  • Postman collection, sample backup fixtures, and an integration test suite covering ledger balance invariants
  • Compliance pack: data minimization map, retention policy, GDPR data subject request handlers, audit-log schema

Data available for integration

Data typeSourceGranularityTypical use
Transactions (income / expense / transfer)Main entry screen, Excel backupPer entry, ISO timestamp + amount + FXAccounting sync, spend analytics
Categories & sub-categoriesSettings > CategoriesTree, configurable depthSpend taxonomy, ML classification training
Accounts & account groupsAsset tabPer account, per currencyNet-worth roll-up, multi-bank dashboards
Card settlement & outstanding balanceCard managementPer card, settlement dateCash-flow forecasting, due-date reminders
Budgets (weekly / monthly / annual)Budget tabPer category and periodVariance reporting, envelope budgeting tools
Recurring entries & auto-transfersRecurrence settingsPer rule, with cadence + end dateForecasting, salary & loan modeling
Bookmarked entriesBookmark functionPer templateQuick-entry productivity tooling

Typical integration scenarios

1. Accounting back-office sync. A small business owner records every cash and card expense in Money Manager. Our integration polls the daily Google Drive backup, parses the sub-currency Excel format, and posts each double-entry pair into Xero or QuickBooks via their journal entry endpoints, preserving category mappings.

2. Personal-finance dashboard mash-up. A neobank wants to display unified spend across its own card and the user's other wallets. The user grants consent, our API exposes Money Manager transactions and budgets, and the bank renders one combined timeline alongside its real-time card feed.

3. Tax-prep automation. At year end, freelancers ask their bookkeeper to fetch all deductible expenses. Our API returns transactions filtered by category and date range as JSON, ready to drop into local tax templates (Korean NTS Hometax, US Schedule C, UK self-assessment).

4. Couples & family budgeting. Two partners both keep separate Money Manager ledgers. Our consolidator endpoint merges both streams, deduplicates transfers between household accounts, and emits one shared budget-vs-actual report each Sunday.

5. Loan underwriting affordability check. A regulated lender needs evidence of stable income and discretionary spend. With explicit user consent, the lender ingests three months of Money Manager statements through our API, scores affordability, and stores only the aggregate fields permitted by local consumer-credit rules.

Technical implementation

1. Authorize and bind a user

POST /api/v1/moneymanager/auth/bind
Content-Type: application/json
Authorization: Bearer <PARTNER_API_KEY>

{
  "user_ref": "u_3f9a",
  "consent_id": "c_2026_05_03_001",
  "backup_source": "google_drive",
  "drive_oauth_token": "ya29.a0Af..."
}

200 OK
{
  "binding_id": "bind_8c1e",
  "status": "active",
  "next_sync_at": "2026-05-04T02:00:00Z",
  "scopes": ["transactions:read", "budgets:read", "accounts:read"]
}

2. Fetch a transaction statement

GET /api/v1/moneymanager/transactions
  ?binding_id=bind_8c1e
  &from=2026-04-01&to=2026-04-30
  &account=KEB_HANA_CHECKING
  &currency=KRW
Authorization: Bearer <PARTNER_API_KEY>

200 OK
{
  "page": 1,
  "page_size": 100,
  "total": 184,
  "items": [
    {
      "id": "tx_0001",
      "ts": "2026-04-02T11:24:00+09:00",
      "type": "expense",
      "amount": 18500,
      "currency": "KRW",
      "account": "KEB_HANA_CHECKING",
      "category": "Food",
      "sub_category": "Cafe",
      "memo": "Morning coffee",
      "double_entry": {
        "debit": "Food:Cafe",
        "credit": "KEB_HANA_CHECKING"
      }
    }
  ]
}

3. Webhook on new backup

POST https://your-app.example.com/hooks/moneymanager
X-OFL-Signature: t=1714694400,v1=8b0c...
Content-Type: application/json

{
  "event": "backup.ingested",
  "binding_id": "bind_8c1e",
  "backup_id": "bk_2026_05_03",
  "summary": {
    "tx_added": 47,
    "tx_updated": 3,
    "budget_changes": 1,
    "currencies": ["KRW", "USD"]
  },
  "occurred_at": "2026-05-03T02:14:11Z"
}

// Verify with HMAC-SHA256 over the raw body using your shared secret.
// On 2xx response we mark the event delivered; otherwise we retry with
// exponential backoff up to 24h.

Compliance & privacy

Money Manager backups can carry granular spending behavior, so our integration treats every export as personal data under the EU GDPR and Korea's PIPA. We collect explicit, revocable user consent before reading any backup, scope tokens to the minimum endpoints needed, and ship a data-subject-access handler that can produce or delete a user's record on demand.

Where the integration also touches a regulated bank account (for example to reconcile a Money Manager ledger against a real statement), we layer on the PSD2 account information service pattern, including 90-day strong customer authentication renewal. Korean deployments additionally honor the Financial Services Commission's MyData accreditation rules where partners are licensed.

We never publish credentials, never persist Google Drive refresh tokens unencrypted, and rotate our HMAC webhook secrets on a 30-day cadence. Audit logs cover every read against a binding and are retained for the period your jurisdiction requires.

Data flow / architecture

The pipeline is intentionally short and inspectable:

  1. Source. The user's Money Manager app writes a backup to Google Drive (daily/weekly) or exports an Excel file by hand.
  2. Ingestion worker. Our worker authenticates with the user's Drive scope, downloads the new backup, and parses the sub-currency Excel schema or the JSON variant into a normalized ledger.
  3. Storage. Records land in a partitioned PostgreSQL table keyed by binding and date, with row-level encryption on amount and memo fields.
  4. API / webhooks. Partner systems either pull via the REST endpoints above or subscribe to backup.ingested, budget.exceeded, and recurring.due events.

Market positioning & user profile

Money Manager (Remove Ads) is published by the Korean studio Realbyte Inc. and is the ad-free sibling of the broader Money Manager Expense & Budget product line. Its core audience is detail-oriented self-trackers: solo professionals, dual-income households, expat workers handling multiple currencies, and small-shop owners who want a strict double-entry ledger on their phone rather than a spreadsheet. Strongest install bases sit in South Korea, Japan, Germany, the UK, and the US, with active iOS (last updated October 2025, v2.12.3) and Android (March 2026, v4.10.7 GF) clients. Because users explicitly choose Money Manager for record-keeping discipline, the data quality inside a backup is unusually high — a meaningful differentiator versus auto-aggregated bank feeds when the integration target is accounting accuracy rather than raw signal volume.

Screenshots

Tap any thumbnail to open a larger view. Screenshots are sourced from the official Google Play listing and illustrate the data surfaces an integration consumes.

Money Manager screenshot 1 Money Manager screenshot 2 Money Manager screenshot 3 Money Manager screenshot 4 Money Manager screenshot 5 Money Manager screenshot 6 Money Manager screenshot 7 Money Manager screenshot 8

Similar apps & integration landscape

Personal-finance tooling is a crowded ecosystem and most teams already touch more than one product. The apps below sit adjacent to Money Manager (Remove Ads); naming them here helps potential customers locate this page when they research unified or cross-app integration work.

  • Monefy — Quick-tap expense logger; users often need to merge a Monefy CSV with a Money Manager Excel backup into one canonical ledger.
  • Goodbudget — Envelope-style budgeting on the web and mobile; budget-category mappings are a common joint-integration deliverable.
  • YNAB (You Need A Budget) — Zero-based budgeting with its own published API; pairs well with a Money Manager export for users who treat YNAB as planning and Money Manager as audit trail.
  • PocketGuard — Bank-aggregator app focused on safe-to-spend amounts; complements Money Manager's manual ledger when both are live on the same household.
  • Expensify — Receipt scanning and expense reports for businesses; we frequently bridge personal Money Manager expenses into Expensify reports for reimbursable categories.
  • HomeBank — Open-source desktop personal-finance ledger; many self-hosters move history between HomeBank and Money Manager via our normalized JSON.
  • GnuCash — The reference open-source double-entry ledger; mapping Money Manager's debit/credit pairs into GnuCash accounts is a popular CLI export.
  • Monarch Money — Modern Mint successor with shared household budgets; useful when a couple keeps Monarch as the dashboard and Money Manager as the source of truth.
  • Quicken Simplifi — Subscription budgeting with bill detection; integration scenarios center on importing Money Manager's manual cash entries into Simplifi.
  • Rocket Money — Subscription-cancellation and budgeting service; recurring-entry data from Money Manager lines up cleanly with Rocket Money's subscription model.

About OpenFinance Lab

We are an independent studio focused on mobile fintech and OpenData API integration. Our engineers come from retail banking, payment gateways, mobile app reverse engineering, and cloud platform teams. We have shipped end-to-end integrations for personal-finance ledgers, neobanks, e-commerce ordering systems, and travel apps across Asia, Europe, and the Americas, working under both authorized partner agreements and documented public-data scenarios.

  • Personal finance, neobank, and SME bookkeeping integrations
  • Mobile protocol analysis and authorized data extraction
  • Custom Python, Node.js, and Go SDKs with full test harnesses
  • Compliance review against GDPR, PSD2, PIPA, and regional MyData regimes
  • Source-code delivery from $300 — receive runnable API source and full documentation; pay after delivery upon satisfaction
  • Pay-per-call API billing — access our hosted Money Manager endpoints and pay only per call, with no upfront cost

Contact

For quotes, sandbox access, or to submit your specific Money Manager integration requirements, open our contact page:

Contact page

We respond to most enquiries within one business day and can sign an NDA before reviewing technical scope.

Engagement workflow

  1. Scope confirmation: which Money Manager data surfaces (transactions, budgets, accounts, card schedules) and which downstream systems.
  2. Protocol & backup-format analysis (2–5 business days), including the 2024 sub-currency Excel schema and Wi-Fi PC Manager channel.
  3. Build and internal validation against ledger balance invariants (3–8 business days).
  4. Documentation, sample fixtures, Postman collection, and integration tests (1–2 business days).
  5. First delivery typically lands in 5 to 15 business days; partner-side OAuth approvals may extend the timeline.

FAQ

Does Money Manager (Realbyte) provide an official public API?

There is no official public REST API published by Realbyte at the time of writing. Integration relies on the app's documented Excel/JSON backup files, the Google Drive backup container, and authorized protocol analysis of the Wi-Fi PC Manager channel. Our deliverables wrap these data sources into a clean, documented HTTP API.

What financial data can I extract from a Money Manager backup?

Each backup contains transactions (date, amount, currency, category, sub-category, account, memo), accounts and account groups, budgets per category and period, recurring transfers, debit/credit card settlement schedules, and bookmarks. We normalize these into JSON suitable for accounting sync, BI dashboards, or KYC analytics.

How long does the integration take and how is it priced?

Source-code delivery starts at $300 with a typical first drop in 5 to 12 business days. Pay-per-call billing is available for teams that prefer hosted endpoints with no upfront cost. NDAs and private deployment options are available on request.

Is the integration compliant with GDPR and other data protection laws?

Yes. We process backup files only under explicit user consent, minimize stored fields to those required by the integration scenario, support EU data residency, and provide audit logs. Implementations align with GDPR, PSD2 strong customer authentication patterns, and Korea's PIPA where the Realbyte app's Korean user base is in scope.
📱 Original app overview (appendix)

Money Manager (Remove Ads) is the ad-free build of Realbyte's flagship personal-finance app, available on Android (package com.realbyteapps.moneya, latest 4.10.7 GF, March 2026) and iOS (latest 2.12.3, October 2025). It is designed for users who want a disciplined, double-entry ledger on their phone rather than an auto-aggregated bank feed.

  • PC Manager (Wi-Fi). View, edit, and sort entries from a desktop browser over a local Wi-Fi link, with category, account, and date grouping plus account-balance graphs.
  • Double-entry bookkeeping. Income and expense entries automatically post matching debit and credit movements against the chosen account, mirroring formal accounting.
  • Budget management. Set weekly, monthly, or annual budgets per category; the app graphs spend against budget so users see overruns at a glance.
  • Card / debit-card management. Configure settlement dates, see outstanding payment amounts on the asset tab, and link cards to checking accounts for automatic debit.
  • Passcode lock. A passcode can be required to open the app, protecting the on-device ledger if the phone is unlocked by someone else.
  • Transfers, direct debit, recurrence. Inter-account transfers, recurring salary, insurance, term-deposit, and loan entries simplify long-running asset management.
  • Instant statistics. Per-category expense breakdowns, monthly comparisons, and asset/income/expense trend charts based on entered data.
  • Bookmarks. Save frequent expense templates and re-enter them in a single tap.
  • Backup & restore. Excel-format backup and restore, with Google Drive backup support including daily and weekly automatic schedules.
  • Other. Configurable starting day of the financial period, in-app calculator, and a sub-category on/off toggle for users who prefer a flatter taxonomy.

Last updated: 2026-05-03