Compliant Israeli mashkanta data extraction, mortgage document decoding, and bank-rate comparison API delivery — aligned with Bank of Israel Open Banking and PSD2.
The Mortgage Wizard (אשף המשכנתאות, package my.FREE) walks Israeli homebuyers through entering loan parameters, calculating an optimal mortgage mix, and comparing offers across Bank Hapoalim, Bank Leumi, Mizrahi Tefahot, Discount and other lenders. Behind that journey sits a rich set of structured fields — loan-to-value ratios, track allocations, prime/fixed/variable/Madad components, monthly amortization, and total return projections — that brokers, CRMs, and OpenBanking aggregators want to consume directly.
Mirror the step-by-step intake flow that the app uses: loan amount, property value, equity, repayment horizon, household income, and existing financial obligations. Each field maps to a typed JSON property that downstream brokers or banks can consume without re-keying. Useful for client-onboarding portals and mortgage broker CRMs.
Expose the in-app mix optimizer as a stateless endpoint. Send the borrower profile, get back the recommended weighting across Prime, Kvua Tzmuda (fixed CPI-linked), Kvua Lo Tzmuda (fixed unlinked), and Mishtana (variable) tracks, with month-by-month amortization tables and total-interest projections.
Normalize bank offer matrices into a comparable schema (lender, track, nominal rate, effective rate, monthly payment, total return). Lets dashboards rank Hapoalim vs Leumi vs Mizrahi Tefahot vs Discount programmatically and feed scoring engines that pick the lower-total-return option.
Wrap the premium document-decoding service so PDF mortgage offers and existing-mortgage statements upload via a single multipart endpoint and return structured fields: principal balance, residual term, indexation, monthly payment, and effective APR.
Run the refinance calculation against current market rates. The endpoint takes the decoded existing-mortgage object, queries today's bank offers, and returns a delta with break-even months and projected savings — usable for advisor outreach automations.
Deliver completion webhooks when a user finalizes a mix or uploads a new offer, and provide JSON / Excel / PDF exports for record-keeping. Fits operations teams that already work in Excel and need a hand-off bridge from the app to internal tools.
The Mortgage Wizard surfaces a focused but high-value dataset. Most fields are computed locally from user input, while the Premium AI tier adds server-side decoded data extracted from uploaded bank documents. The table below summarizes what we can integrate.
| Data type | Source (screen / feature) | Granularity | Typical use |
|---|---|---|---|
| Borrower profile | Initial data entry | Per applicant: income, equity, age, dependents | Pre-qualification, broker CRM enrichment |
| Mortgage mix | Mix calculation screen | Per track: weight %, principal, term, rate | Risk scoring, advisor recommendations |
| Bank offer matrix | Bank comparison screen | Per lender × track: nominal/effective rate, monthly payment | Rate aggregators, market dashboards |
| Total cost projections | Decision screen | Cumulative interest, total return, payment schedule | Affordability analytics, stress testing |
| Decoded existing mortgage | Premium document upload (refinance flow) | Principal balance, residual term, track mix | Refinance advisor, churn-risk modeling |
| Decoded new offer | Premium document upload (interest-rate screen) | Lender-specific tracks & pricing | Offer comparison automation |
| Refinance simulation | Cycle (Michzur) feature | Break-even months, projected savings | Outreach campaigns, ROI calculators |
| Premium AI Q&A history | AI assistant chat | Per question: timestamp, topic, answer | Knowledge base feeding, FAQ extraction |
An Israeli mortgage brokerage wants to import every client's calculated mix and bank offers into their internal CRM. We expose a /mashkanta/mix endpoint and a webhook that fires when the user finalizes a recommendation, then map fields to the broker's pipeline stages. Maps cleanly to OpenData principles: user-authorized export of structured records.
Aggregators such as Finanda or Feezback already pull bank account data under the Bank of Israel PSD2 standard. Adding decoded mortgage offers and refinance simulations from the Mortgage Wizard rounds out the household-debt picture for budgeting clients (RiseUp-style users) without forcing them to re-key data.
A lender wants to see, in near real time, how its offers stack up against competitors in the app's comparison matrix. We deliver a daily snapshot endpoint that anonymizes user-level data and returns aggregate rate distributions, useful for product-pricing teams responding to Bank of Israel rate-cycle changes.
Wealth advisors target clients who are paying above-market rates on existing mortgages. Using the Premium AI document decoder, advisors batch-upload offer PDFs, the API returns structured residual schedules, and the cycle endpoint flags clients with break-even windows under 24 months.
Olim and foreign buyers using sites like Bruchim Habaim or Nefesh B'Nefesh resources need a unified affordability picture. Embedding the mortgage mix and total-return endpoints into onboarding journeys gives new immigrants a clear, English-friendly view of mashkanta scenarios before meeting a banker.
POST /api/v1/mortgage-wizard/auth/token
Content-Type: application/json
{
"client_id": "studio_partner_42",
"client_secret": "<SECRET>",
"user_consent_token": "<CONSENT_FROM_APP>",
"scope": "mix.read offers.read documents.decode"
}
Response:
{
"access_token": "ey...",
"expires_in": 3600,
"scope": "mix.read offers.read documents.decode",
"user_ref": "uw_8f3c..."
}
GET /api/v1/mortgage-wizard/mix?user_ref=uw_8f3c
Authorization: Bearer <ACCESS_TOKEN>
Response:
{
"mix_id": "mix_2026_04_12",
"loan_amount_ils": 1450000,
"term_months": 300,
"tracks": [
{"type": "prime", "weight": 0.33, "rate": 0.061, "monthly_ils": 3110},
{"type": "kvua_tzmuda", "weight": 0.33, "rate": 0.039, "monthly_ils": 2680},
{"type": "mishtana_madad", "weight": 0.34, "rate": 0.048, "monthly_ils": 2860}
],
"total_return_ils": 2470000,
"currency": "ILS"
}
POST /api/v1/mortgage-wizard/documents/decode
Authorization: Bearer <ACCESS_TOKEN>
Content-Type: multipart/form-data
file: hapoalim_offer_2026_04.pdf
doc_type: bank_offer | existing_mortgage
Response:
{
"doc_type": "bank_offer",
"lender": "BankHapoalim",
"tracks_detected": 4,
"fields": {
"principal_ils": 1450000,
"term_months": 300,
"linked_to_cpi": true,
"effective_apr": 0.0467
},
"confidence": 0.94
}
Errors handled:
- 415 unsupported_media_type
- 422 ocr_low_confidence (returns partial fields + flag)
All integrations are scoped to the user's explicit consent and align with the regulatory landscape for Israeli mortgage data:
A typical pipeline looks like this:
Mortgage Wizard targets the Israeli retail finance market — primarily first-time buyers preparing for a mashkanta, families negotiating between bank offers, and homeowners considering a mortgage cycle (refinance) at a time when average mortgage rates sit near 5% and inflation runs around 3%. Distribution skews to Android and iOS phones used in Israel, with a growing share of Olim and foreign buyers consulting it alongside English-language calculators. The Premium AI tier (3-month subscription) extends value into advisory workflows, making the app a natural data source for brokers, advisors, and OpenBanking platforms that already serve Israeli households.
Click any screenshot for a larger preview.
Users who research mortgages in Israel often consult several apps and tools alongside Mortgage Wizard. Below are real adjacent products in the same ecosystem; we describe each only in terms of the data they hold and how it relates to OpenData/OpenBanking integration work — not in a competitive ranking.
A simple Israeli mortgage calculator on Google Play. Holds entered loan parameters and computed monthly amortization. Users who switch between MashkantaOn and Mortgage Wizard often want a unified mix export that survives platform changes.
The companion calculator from the same studio family. Stores entered loan, term, and rate values plus calculated monthly payment, which can flow into the broader Mortgage Wizard mix optimizer through a shared schema.
An Israeli app focused on organizing mortgage documents. Holds uploaded PDFs and metadata; pairs naturally with the Mortgage Wizard premium decoder so files indexed there can be parsed into structured fields.
An Israeli mortgage planning platform with algorithmic optimization and live coaching. Maintains user mortgage scenarios server-side; integration users want a normalized export across Ribit and Mortgage Wizard for portfolio-level views.
A leading Israeli budgeting fintech (paid tier around NIS 45/month). Holds personalized cash-flow records; users often want their Mortgage Wizard mortgage mix imported so monthly debt service is reflected accurately in cash-flow plans.
An Israeli 360° net-worth app that aggregates banks, credit cards, insurance, pensions, mortgages, and even crypto. A natural target for receiving Mortgage Wizard mix exports as the "mortgage" line in the household ledger.
Israel's ISA-licensed financial aggregator under PSD2 / Bank of Israel Open Banking rules. Holds bank account aggregations; pairs with mortgage data so advisor dashboards see income, balance, and mortgage obligation in one feed.
An Israeli OpenBanking specialist serving fintechs. Integration teams often combine Feezback's account streams with Mortgage Wizard outputs to build holistic affordability and refinance-eligibility models.
An Israeli mortgage-focused platform marketing itself as a "mortgage revolution". Holds mortgage offer data and lead-handling workflows; users often request unified offer schemas covering both Wifix and Mortgage Wizard.
A cross-border budget app frequently used by Olim. Holds expense and income records; benefits from a Mortgage Wizard mortgage line item so budgeting reflects Israeli mashkanta payment realities.
We are an independent technical service studio specializing in App interface integration and authorized API integration. Our team has hands-on experience in mobile applications and fintech, including Israeli OpenBanking, mortgage workflows, and document-decoding pipelines. We deliver protocol analysis, interface refactoring, OpenData integration, third-party interface integration, automated data scripting, and detailed interface documentation.
For quotes, sandbox access, or to submit your target app and requirements, reach us via the contact page:
Tell us which Mortgage Wizard modules you need (mix, offers, documents, refinance) and any preferred SDK language so we can scope quickly.
What do you need from me?
How long does delivery take?
How do you handle compliance?
Can I host the API myself?
The Mortgage Wizard (אשף המשכנתאות) is an Israeli mortgage-planning app that guides users step by step from initial data entry, through mortgage mix calculation, to comparing bank offers and interest rates. Its core promise is a streamlined, data-based decision process without guesswork and unnecessary mistakes.
For users who want to progress faster and with fewer mistakes. The premium tier includes:
The premium service is available for a period of 3 months of use.
Mortgage documents are uploaded to the server for decoding purposes only and are used to enter mortgage data in the application. This is the privacy posture our integration layer mirrors when handling decoded fields downstream.