/

/

/

Upgrade

ImmOS.Upgrade

The simplest path to the perfect renovation loan.

ImmOS.Upgrade supports your customers from renovation planning through to financing – delivering qualified, integrated and immediately usable data for the perfect renovation loan.

ImmOS.Upgrade Visual

/

/

/

Upgrade

ImmOS.Upgrade

The simplest path to the perfect renovation loan.

ImmOS.Upgrade supports your customers from renovation planning through to financing – delivering qualified, integrated and immediately usable data for the perfect renovation loan.

ImmOS.Upgrade Visual

ImmOS.Upgrade

The simplest path to the perfect renovation loan.

ImmOS.Upgrade supports your customers from renovation planning through to financing – delivering qualified, integrated and immediately usable data for the perfect renovation loan.

ImmOS.Upgrade Visual

/

/

/

Upgrade

ImmOS.Upgrade

The simplest path to the perfect renovation loan.

ImmOS.Upgrade supports your customers from renovation planning through to financing – delivering qualified, integrated and immediately usable data for the perfect renovation loan.

ImmOS.Upgrade Visual
  • Logo Black s Bausparkasse
    UBS Logo schwarz
    Logo Deka schwarz
    Raiffeisen Bank International Logo schwarz
    Volksbanken Raiffeisenbanken Logo schwarz
    Logo Black ABN AMRO
    Logo Black HAL
    Logo Black Cronbank
    Sparkasse Logo schwarz
    apoBank Logo schwarz
  • Logo Black s Bausparkasse
    UBS Logo schwarz
    Logo Deka schwarz
    Raiffeisen Bank International Logo schwarz
    Volksbanken Raiffeisenbanken Logo schwarz
    Logo Black ABN AMRO
    Logo Black HAL
    Logo Black Cronbank
    Sparkasse Logo schwarz
    apoBank Logo schwarz
  • Logo Black s Bausparkasse
    UBS Logo schwarz
    Logo Deka schwarz
    Raiffeisen Bank International Logo schwarz
    Volksbanken Raiffeisenbanken Logo schwarz
    Logo Black ABN AMRO
    Logo Black HAL
    Logo Black Cronbank
    Sparkasse Logo schwarz
    apoBank Logo schwarz

More than 70 financial services providers already trust our expertise.

Unclear planning and high rework effort

Unclear planning and high rework effort

Many advisory conversations start with incomplete information, unrealistic budget expectations and high manual effort. At the same time, reliable data on renovation costs, subsidies and actual financing needs is often missing – prolonging processes, tying up resources and triggering follow-on financing.

0%

of the housing stock is considered in need of renovation.

0k €

average loan amount per financed renovation.

By 2050, the total financing needs will amount to around EUR 1,000 billion, as zeb studies show.

ImmOS.Upgrade turns “needs renovation” into future-ready.

Combines renovation costs, subsidies and financing data into one seamless process.

Part of the following bundles

Leads

Retention

Pattern

Reduced resource utilization

With prepared data, realistic cost estimates and clear loan amounts, resource effort in the initial consultation is significantly reduced. Faster, more efficient and easier to plan.

Pattern

Reduced resource utilization

With prepared data, realistic cost estimates and clear loan amounts, resource effort in the initial consultation is significantly reduced. Faster, more efficient and easier to plan.

Pattern

Qualified leads for the renovation business

You receive pre-checked, realistic financing requests instead of vague inquiries. The perfect foundation for successful new or follow-on business.

Pattern

Qualified leads for the renovation business

You receive pre-checked, realistic financing requests instead of vague inquiries. The perfect foundation for successful new or follow-on business.

Pattern

Fewer follow-on financings, greater planning certainty

Realistic budget, renovation and subsidy estimates significantly reduce the risk of follow-on financing.

Pattern

Fewer follow-on financings, greater planning certainty

Realistic budget, renovation and subsidy estimates significantly reduce the risk of follow-on financing.

Gradient Background
Pattern
UI Sanierungsmaßnahmen Listendarstellung

Transparent renovation planning for informed decisions

The tool recommends suitable measures, clearly displays costs, savings and subsidies – creating a transparent, financeable renovation plan.

Gradient Background
Pattern
UI Sanierungskreditrechner Eingabefelder

The loan calculator for every renovation

Automatic calculations make the loan amount, installment and total term immediately transparent.

Logo ImmOS.Upgrade

ImmOS.

Upgrade

Upgrade

Benefits that deliver value on both sides.

Benefits for you

Benefits for customers

Bank

Lower advisory effort through pre-qualified data and realistic cost estimates

Qualified financing requests instead of vague inquiries

Seamless integration into existing systems and processes

Customers

Early orientation on planning and loan amount

Fewer manual inputs and less uncertainty thanks to automatic calculations

A stronger basis for decisions before starting the renovation – through realistic costs and subsidy checks

Benefits for you

Benefits for customers

Bank

Lower advisory effort through pre-qualified data and realistic cost estimates

Qualified financing requests instead of vague inquiries

Seamless integration into existing systems and processes

Customers

Early orientation on planning and loan amount

Fewer manual inputs and less uncertainty thanks to automatic calculations

A stronger basis for decisions before starting the renovation – through realistic costs and subsidy checks

Bank

Customers

Bank

Lower advisory effort through pre-qualified data and realistic cost estimates

Qualified financing requests instead of vague inquiries

Seamless integration into existing systems and processes

Customers

Early orientation on planning and loan amount

Fewer manual inputs and less uncertainty thanks to automatic calculations

A stronger basis for decisions before starting the renovation – through realistic costs and subsidy checks

ImmOS

The modular operating system for digital mortgage financing

Gradient rot blau

ImmOS

ImmOS

The modular operating system for digital mortgage financing

Gradient rot blau

ImmOS

ImmOS

The modular operating system for digital mortgage financing

Gradient rot blau

ImmOS

ImmOS

The modular operating system for digital mortgage financing

Gradient rot blau

ImmOS

Discover more modules

Discover more modules

Discover more modules

Discover more modules

Full integration.
No compromises.

ImmOS is flexibly deployable, securely integrated and developed with zeb’s expertise.

ImmOS is flexibly deployable, securely integrated and developed with zeb’s expertise.

Flexible by design

Select only the modules you actually need – and expand step by step.

  • Logo ImmOS.Compass
  • Logo ImmOS.Flow
  • Logo Flow.Exposed
  • Logo Flow.Pricing
  • Logo Flow.Asset IQ
  • Logo ImmOS.Upgrade
  • Logo ImmOS.Lifecycle
  • Logo ImmOS.Hybrid
  • Logo ImmOS.Subsidy
  • Logo ImmOS.Ecoproof
  • Logo ImmOS.Payout
  • Logo ImmOS.BaufiHub

Compatible with your bank’s IT

ImmOS is flexible and integrates seamlessly into existing systems.

  • // src/types/immos.ts
    
    export type ImmosApplicant = {
      firstName: string;
      lastName: string;
      dateOfBirth: string; // ISO
      email: string;
      phone?: string;
      netIncomeMonthly: number;
      employmentType: "EMPLOYED" | "SELF_EMPLOYED";
    };
    
    export type ImmosObjectData = {
      type: "HOUSE" | "FLAT" | "LAND";
      usage: "OWN_USE" | "INVESTMENT";
      postcode: string;
      city: string;
      purchasePrice: number;
      refurbishmentBudget?: number;
    };
    
    export type ImmosLoanRequest = {
      ownCapital: number;
      requestedLoanAmount: number;
      termYears: number;
      fixedInterestYears: number;
    };
    
    export type ImmosPrecheckRequest = {
      applicants: ImmosApplicant[];
      object: ImmosObjectData;
      loan: ImmosLoanRequest;
      channel: "ONLINE" | "BRANCH" | "PARTNER";
      leadSource?: string;
    };
    
    export type ImmosPrecheckResponse = {
      immosCaseId: string;
      status: "PRECHECK_OK" | "PRECHECK_NEEDS_REVIEW";
      maxPossibleLoan?: number;
      ltv?: number; // loan-to-value
      reasons?: string[];
    };
    
    export type ImmosOffer = {
      offerId: string;
      lenderName: string;
      effectiveRate: number;
      nominalRate: number;
      monthlyRate: number;
      termYears: number;
      fixedInterestYears: number;
      totalCost: number;
      isHighlight: boolean;
    };
    
    export type ImmosCaseStatus =
      | "DRAFT"
      | "PRECHECKED"
      | "OFFER_REQUESTED"
      | "OFFER_RECEIVED"
      | "SUBMITTED_TO_LENDER"
      | "APPROVED"
      | "REJECTED"
      | "WITHDRAWN";

More than just a digitalization agency.

As part of the zeb group, we combine strategic technological implementation to rethink the future of mortgage financing holistically.

No off-the-shelf solution

A customizable framework, tailored to your requirements.

Certified. Secure. Future-proof.

ISO 20071-compliant, privacy-compliant, and designed to meet regulatory requirements in the financial sector.

Verlauf dunkel rot und blau

Flexible by design

Select only the modules you actually need – and expand step by step.

  • Logo ImmOS.Compass
  • Logo ImmOS.Flow
  • Logo Flow.Exposed
  • Logo Flow.Pricing
  • Logo Flow.Asset IQ
  • Logo ImmOS.Upgrade
  • Logo ImmOS.Lifecycle
  • Logo ImmOS.Hybrid
  • Logo ImmOS.Subsidy
  • Logo ImmOS.Ecoproof
  • Logo ImmOS.Payout
  • Logo ImmOS.BaufiHub

Compatible with your bank’s IT

ImmOS is flexible and integrates seamlessly into existing systems.

  • // src/types/immos.ts
    
    export type ImmosApplicant = {
      firstName: string;
      lastName: string;
      dateOfBirth: string; // ISO
      email: string;
      phone?: string;
      netIncomeMonthly: number;
      employmentType: "EMPLOYED" | "SELF_EMPLOYED";
    };
    
    export type ImmosObjectData = {
      type: "HOUSE" | "FLAT" | "LAND";
      usage: "OWN_USE" | "INVESTMENT";
      postcode: string;
      city: string;
      purchasePrice: number;
      refurbishmentBudget?: number;
    };
    
    export type ImmosLoanRequest = {
      ownCapital: number;
      requestedLoanAmount: number;
      termYears: number;
      fixedInterestYears: number;
    };
    
    export type ImmosPrecheckRequest = {
      applicants: ImmosApplicant[];
      object: ImmosObjectData;
      loan: ImmosLoanRequest;
      channel: "ONLINE" | "BRANCH" | "PARTNER";
      leadSource?: string;
    };
    
    export type ImmosPrecheckResponse = {
      immosCaseId: string;
      status: "PRECHECK_OK" | "PRECHECK_NEEDS_REVIEW";
      maxPossibleLoan?: number;
      ltv?: number; // loan-to-value
      reasons?: string[];
    };
    
    export type ImmosOffer = {
      offerId: string;
      lenderName: string;
      effectiveRate: number;
      nominalRate: number;
      monthlyRate: number;
      termYears: number;
      fixedInterestYears: number;
      totalCost: number;
      isHighlight: boolean;
    };
    
    export type ImmosCaseStatus =
      | "DRAFT"
      | "PRECHECKED"
      | "OFFER_REQUESTED"
      | "OFFER_RECEIVED"
      | "SUBMITTED_TO_LENDER"
      | "APPROVED"
      | "REJECTED"
      | "WITHDRAWN";

More than just a digitalization agency.

As part of the zeb group, we combine strategic technological implementation to rethink the future of mortgage financing holistically.

No off-the-shelf solution

A customizable framework, tailored to your requirements.

Certified. Secure. Future-proof.

ISO 20071-compliant, privacy-compliant, and designed to meet regulatory requirements in the financial sector.

Verlauf dunkel rot und blau

Flexible by design

Select only the modules you actually need – and expand step by step.

  • Logo ImmOS.Compass
  • Logo ImmOS.Flow
  • Logo Flow.Exposed
  • Logo Flow.Pricing
  • Logo Flow.Asset IQ
  • Logo ImmOS.Upgrade
  • Logo ImmOS.Lifecycle
  • Logo ImmOS.Hybrid
  • Logo ImmOS.Subsidy
  • Logo ImmOS.Ecoproof
  • Logo ImmOS.Payout
  • Logo ImmOS.BaufiHub

Compatible with your bank’s IT

ImmOS is flexible and integrates seamlessly into existing systems.

  • // src/types/immos.ts
    
    export type ImmosApplicant = {
      firstName: string;
      lastName: string;
      dateOfBirth: string; // ISO
      email: string;
      phone?: string;
      netIncomeMonthly: number;
      employmentType: "EMPLOYED" | "SELF_EMPLOYED";
    };
    
    export type ImmosObjectData = {
      type: "HOUSE" | "FLAT" | "LAND";
      usage: "OWN_USE" | "INVESTMENT";
      postcode: string;
      city: string;
      purchasePrice: number;
      refurbishmentBudget?: number;
    };
    
    export type ImmosLoanRequest = {
      ownCapital: number;
      requestedLoanAmount: number;
      termYears: number;
      fixedInterestYears: number;
    };
    
    export type ImmosPrecheckRequest = {
      applicants: ImmosApplicant[];
      object: ImmosObjectData;
      loan: ImmosLoanRequest;
      channel: "ONLINE" | "BRANCH" | "PARTNER";
      leadSource?: string;
    };
    
    export type ImmosPrecheckResponse = {
      immosCaseId: string;
      status: "PRECHECK_OK" | "PRECHECK_NEEDS_REVIEW";
      maxPossibleLoan?: number;
      ltv?: number; // loan-to-value
      reasons?: string[];
    };
    
    export type ImmosOffer = {
      offerId: string;
      lenderName: string;
      effectiveRate: number;
      nominalRate: number;
      monthlyRate: number;
      termYears: number;
      fixedInterestYears: number;
      totalCost: number;
      isHighlight: boolean;
    };
    
    export type ImmosCaseStatus =
      | "DRAFT"
      | "PRECHECKED"
      | "OFFER_REQUESTED"
      | "OFFER_RECEIVED"
      | "SUBMITTED_TO_LENDER"
      | "APPROVED"
      | "REJECTED"
      | "WITHDRAWN";

More than just a digitalization agency.

As part of the zeb group, we combine strategic technological implementation to rethink the future of mortgage financing holistically.

No off-the-shelf solution

A customizable framework, tailored to your requirements.

Certified. Secure. Future-proof.

ISO 20071-compliant, privacy-compliant, and designed to meet regulatory requirements in the financial sector.

Verlauf dunkel rot und blau

Flexible by design

Select only the modules you actually need – and expand step by step.

  • Logo ImmOS.Compass
  • Logo ImmOS.Flow
  • Logo Flow.Exposed
  • Logo Flow.Pricing
  • Logo Flow.Asset IQ
  • Logo ImmOS.Upgrade
  • Logo ImmOS.Lifecycle
  • Logo ImmOS.Hybrid
  • Logo ImmOS.Subsidy
  • Logo ImmOS.Ecoproof
  • Logo ImmOS.Payout
  • Logo ImmOS.BaufiHub

Compatible with your bank’s IT

ImmOS is flexible and integrates seamlessly into existing systems.

  • // src/types/immos.ts
    
    export type ImmosApplicant = {
      firstName: string;
      lastName: string;
      dateOfBirth: string; // ISO
      email: string;
      phone?: string;
      netIncomeMonthly: number;
      employmentType: "EMPLOYED" | "SELF_EMPLOYED";
    };
    
    export type ImmosObjectData = {
      type: "HOUSE" | "FLAT" | "LAND";
      usage: "OWN_USE" | "INVESTMENT";
      postcode: string;
      city: string;
      purchasePrice: number;
      refurbishmentBudget?: number;
    };
    
    export type ImmosLoanRequest = {
      ownCapital: number;
      requestedLoanAmount: number;
      termYears: number;
      fixedInterestYears: number;
    };
    
    export type ImmosPrecheckRequest = {
      applicants: ImmosApplicant[];
      object: ImmosObjectData;
      loan: ImmosLoanRequest;
      channel: "ONLINE" | "BRANCH" | "PARTNER";
      leadSource?: string;
    };
    
    export type ImmosPrecheckResponse = {
      immosCaseId: string;
      status: "PRECHECK_OK" | "PRECHECK_NEEDS_REVIEW";
      maxPossibleLoan?: number;
      ltv?: number; // loan-to-value
      reasons?: string[];
    };
    
    export type ImmosOffer = {
      offerId: string;
      lenderName: string;
      effectiveRate: number;
      nominalRate: number;
      monthlyRate: number;
      termYears: number;
      fixedInterestYears: number;
      totalCost: number;
      isHighlight: boolean;
    };
    
    export type ImmosCaseStatus =
      | "DRAFT"
      | "PRECHECKED"
      | "OFFER_REQUESTED"
      | "OFFER_RECEIVED"
      | "SUBMITTED_TO_LENDER"
      | "APPROVED"
      | "REJECTED"
      | "WITHDRAWN";

More than just a digitalization agency.

As part of the zeb group, we combine strategic technological implementation to rethink the future of mortgage financing holistically.

No off-the-shelf solution

A customizable framework, tailored to your requirements.

Certified. Secure. Future-proof.

ISO 20071-compliant, privacy-compliant, and designed to meet regulatory requirements in the financial sector.

Verlauf dunkel rot und blau
Your contacts

Interested in ImmOS.Upgrade?

We’d be happy to show you how this module fits with your bank’s processes – and what impact you can expect.

Dr. Eddie Dubiel applied by zeb

Dr. Eddie Dubiel

Founder & Managing Director

Jan-Philip Berendes

Head of Client & Market Relations

Your contacts

Interested in ImmOS.Upgrade?

We’d be happy to show you how this module fits with your bank’s processes – and what impact you can expect.

Dr. Eddie Dubiel applied by zeb

Dr. Eddie Dubiel

Founder & Managing Director

Jan-Philip Berendes

Head of Client & Market Relations

Your contacts

Interested in ImmOS.Upgrade?

We’d be happy to show you how this module fits with your bank’s processes – and what impact you can expect.

Dr. Eddie Dubiel applied by zeb

Dr. Eddie Dubiel

Founder & Managing Director

Jan-Philip Berendes

Head of Client & Market Relations

Your contacts

Interested in ImmOS.Upgrade?

We’d be happy to show you how this module fits with your bank’s processes – and what impact you can expect.

Dr. Eddie Dubiel applied by zeb

Dr. Eddie Dubiel

Founder & Managing Director

Jan-Philip Berendes

Head of Client & Market Relations