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.
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 type | Source | Granularity | Typical use |
|---|---|---|---|
| Transactions (income / expense / transfer) | Main entry screen, Excel backup | Per entry, ISO timestamp + amount + FX | Accounting sync, spend analytics |
| Categories & sub-categories | Settings > Categories | Tree, configurable depth | Spend taxonomy, ML classification training |
| Accounts & account groups | Asset tab | Per account, per currency | Net-worth roll-up, multi-bank dashboards |
| Card settlement & outstanding balance | Card management | Per card, settlement date | Cash-flow forecasting, due-date reminders |
| Budgets (weekly / monthly / annual) | Budget tab | Per category and period | Variance reporting, envelope budgeting tools |
| Recurring entries & auto-transfers | Recurrence settings | Per rule, with cadence + end date | Forecasting, salary & loan modeling |
| Bookmarked entries | Bookmark function | Per template | Quick-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
¤cy=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:
- Source. The user's Money Manager app writes a backup to Google Drive (daily/weekly) or exports an Excel file by hand.
- 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.
- Storage. Records land in a partitioned PostgreSQL table keyed by binding and date, with row-level encryption on amount and memo fields.
- API / webhooks. Partner systems either pull via the REST endpoints above or subscribe to
backup.ingested,budget.exceeded, andrecurring.dueevents.
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.
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:
We respond to most enquiries within one business day and can sign an NDA before reviewing technical scope.
Engagement workflow
- Scope confirmation: which Money Manager data surfaces (transactions, budgets, accounts, card schedules) and which downstream systems.
- Protocol & backup-format analysis (2–5 business days), including the 2024 sub-currency Excel schema and Wi-Fi PC Manager channel.
- Build and internal validation against ledger balance invariants (3–8 business days).
- Documentation, sample fixtures, Postman collection, and integration tests (1–2 business days).
- 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?
What financial data can I extract from a Money Manager backup?
How long does the integration take and how is it priced?
Is the integration compliant with GDPR and other data protection laws?
📱 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.