Mortgage Wizard (אשף המשכנתאות) API Integration & OpenBanking Services

Compliant Israeli mashkanta data extraction, mortgage document decoding, and bank-rate comparison API delivery — aligned with Bank of Israel Open Banking and PSD2.

From $300 · Pay-per-call available
OpenData · OpenFinance · OpenBanking · Mashkanta protocol analysis

Turn Mortgage Wizard data into structured APIs for advisors, fintechs, and brokerage platforms

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.

Mashkanta mix data API — Read the user's calculated mortgage mix, including allocations across Prime, Kvua Tzmuda, Kvua Lo Tzmuda, and Mishtana Madad tracks, and surface them as a structured JSON object.
Bank offer comparison endpoint — Pull the cross-bank interest-rate matrix and total-cost projections that the app uses for side-by-side comparison, mapped to a single normalized schema.
Premium AI document decoding — Hook into the document upload + decoding pipeline (offer letters, refinancing statements) so PDFs from Hapoalim, Leumi, or Mizrahi flow into structured fields automatically.
Refinancing & cycle analytics — Compute "miyhud" recycling deltas and savings projections for an existing mortgage, aligned with Bank of Israel guidance and current market rates around 5%.

Feature modules — concrete data and capabilities

1. Mortgage data entry capture

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.

2. Optimal mortgage mix calculator API

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.

3. Cross-bank offer comparison

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.

4. Premium AI document decoder

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.

5. Refinancing (Michzur) advisor

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.

6. Webhook events & export

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.

Data available for integration (OpenData inventory)

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 typeSource (screen / feature)GranularityTypical use
Borrower profileInitial data entryPer applicant: income, equity, age, dependentsPre-qualification, broker CRM enrichment
Mortgage mixMix calculation screenPer track: weight %, principal, term, rateRisk scoring, advisor recommendations
Bank offer matrixBank comparison screenPer lender × track: nominal/effective rate, monthly paymentRate aggregators, market dashboards
Total cost projectionsDecision screenCumulative interest, total return, payment scheduleAffordability analytics, stress testing
Decoded existing mortgagePremium document upload (refinance flow)Principal balance, residual term, track mixRefinance advisor, churn-risk modeling
Decoded new offerPremium document upload (interest-rate screen)Lender-specific tracks & pricingOffer comparison automation
Refinance simulationCycle (Michzur) featureBreak-even months, projected savingsOutreach campaigns, ROI calculators
Premium AI Q&A historyAI assistant chatPer question: timestamp, topic, answerKnowledge base feeding, FAQ extraction

Typical integration scenarios

Mortgage broker workbench

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.

OpenBanking aggregator enrichment

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.

Bank outreach & pricing dashboard

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.

Refinance retention campaign

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.

Aliyah & Olim financial onboarding

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.

Technical implementation

Authentication: OAuth-style token exchange

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..."
}

Mortgage mix query

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"
}

Premium document decode

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)

Compliance & privacy

All integrations are scoped to the user's explicit consent and align with the regulatory landscape for Israeli mortgage data:

  • Bank of Israel Open Banking standard — derived from the 2017 Law for Increasing Competition and Reducing Centralization in the Banking Market; defines how account-information service providers (AISPs) consume bank data with customer consent.
  • PSD2-equivalent flows — Bank Hapoalim has run a PSD2 endpoint since April 2021; Bank Leumi exposes hundreds of APIs through FinTeka; we pattern our token and consent lifecycle on these.
  • Israel Privacy Protection Law & GDPR alignment — for users in EU jurisdictions, exports follow GDPR data-subject rights including access, rectification, and erasure.
  • Document handling — uploaded PDFs are processed strictly for decoding, encrypted at rest, and purged on schedule, mirroring the app's stated privacy posture for premium document uploads.

Data flow / architecture

A typical pipeline looks like this:

  • Client app (Mortgage Wizard, Android / iOS) — captures borrower input, runs local mix calculation, optionally uploads documents in Premium tier.
  • Ingestion / API gateway — authorized endpoints (OAuth tokens) accept consent-scoped requests for mix, offers, and documents.
  • Decoding & storage — server-side OCR/NLP pipeline turns PDFs into structured fields; encrypted storage retains user-authorized records only.
  • Analytics / API output — partner consumers (broker CRMs, OpenBanking aggregators, lender dashboards) pull JSON/Excel snapshots or subscribe to webhooks for refinance and offer-finalization events.

Market positioning & user profile

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.

Screenshots

Click any screenshot for a larger preview.

Mortgage Wizard screenshot 1 Mortgage Wizard screenshot 2 Mortgage Wizard screenshot 3 Mortgage Wizard screenshot 4 Mortgage Wizard screenshot 5 Mortgage Wizard screenshot 6 Mortgage Wizard screenshot 7 Mortgage Wizard screenshot 8

Similar apps & integration landscape

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.

MashkantaOn (משכנתאון)

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.

Mortgage Calculator (com.ashaf.mortgagecalc)

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.

Mortgage Document File Manager

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.

Ribit.io

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.

RiseUp

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.

FamilyBiz

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.

Finanda

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.

Feezback

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.

Wifix

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.

Buxfer (Israel)

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.

What we deliver

Deliverables checklist

  • OpenAPI / Swagger specification of all endpoints (auth, mix, offers, documents, refinance)
  • Protocol & auth flow report covering app token chain and consent capture
  • Runnable source code (Python and Node.js reference implementations)
  • Document decoding pipeline for offer PDFs and existing-mortgage statements
  • Automated tests, sample data, and Postman collection
  • Compliance guidance referencing Bank of Israel Open Banking and Israel Privacy Protection Law

Engagement workflow

  1. Scope confirmation — pick the modules: mix, offers, documents, refinance, webhooks.
  2. Protocol analysis & API design (2–5 business days, complexity-dependent).
  3. Implementation and internal validation (3–8 business days).
  4. Documentation, sample collection, and test cases (1–2 business days).
  5. Typical first delivery: 5–15 business days; document-decoding accuracy tuning may extend timelines.

About our studio

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.

  • Financial and banking apps — transaction records, statement query interfaces, mortgage data flows
  • Mortgage and lending platforms — offer aggregation, refinance simulators, document decoding
  • OpenBanking aggregators — consent-based data extraction aligned with PSD2 and the Bank of Israel standard
  • Custom Python / Node.js / Go SDKs and test harnesses
  • Source code delivery from $300 — runnable API source code and full documentation; pay after delivery upon satisfaction
  • Pay-per-call API billing — access our hosted API and pay only per call, no upfront cost

Contact

For quotes, sandbox access, or to submit your target app and requirements, reach us via the contact page:

Contact page

Tell us which Mortgage Wizard modules you need (mix, offers, documents, refinance) and any preferred SDK language so we can scope quickly.

FAQ

What do you need from me?

The target app name (already provided), the concrete modules you want (e.g. mortgage mix export, document decoding, refinance simulator), and any sandbox access or partner credentials you already hold.

How long does delivery take?

Most first drops land in 5–12 business days. Document-decoding accuracy tuning across multiple Israeli banks can extend the schedule modestly.

How do you handle compliance?

We work under user authorization or documented public/authorized APIs only, with logging, consent records, data-minimization guidance, and NDAs when required. Israeli mortgage data work is shaped to Bank of Israel Open Banking expectations and the Israel Privacy Protection Law.

Can I host the API myself?

Yes. The source-code delivery option ships a runnable implementation you can run on your own infrastructure. Alternatively, choose pay-per-call hosted access if you prefer not to operate the stack.
📱 Original app overview (אשף המשכנתאות) — appendix

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.

How it works

  • Entering mortgage data in a simple and clear way.
  • Calculating an optimal mortgage mix.
  • Comparing interest rates and offers between banks.
  • Calculating an optimal mix from all offers.
  • Making a data-based decision.

Why use the Mortgage Wizard

  • Clear vision of the options available across Israeli banks.
  • Understanding the financial significance of each track over the years.
  • A choice aimed at a lower total return on the loan.
  • A streamlined process without guesswork and without unnecessary mistakes.

Who the app is suitable for

  • Prospective borrowers before taking out a first mortgage.
  • Users who already received offers and want to compare them.
  • Existing borrowers considering a mortgage cycle (refinance).

Premium AI — advanced service (3 months of use)

For users who want to progress faster and with fewer mistakes. The premium tier includes:

  • An AI assistant that answers mortgage questions.
  • Uploading mortgage documents from banks.
  • Automatic decoding and data entry for an existing mortgage (for refinancing) and for the interest rate screen of the new mortgage.

User value

  • Time savings.
  • Reduction of data entry errors.
  • Help in choosing a mix that aims for a lower total return.

The premium service is available for a period of 3 months of use.

Privacy and use of documents

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.