/

/

/

Compass

ImmOS.Compass

The fully automated digital initial consultation for new business.

ImmOS.Compass identifies financing potential early, assesses affordability intelligently and strengthens customer retention with clear scenarios for the path to homeownership.

ImmOS.Compass Visual

/

/

/

Compass

ImmOS.Compass

The fully automated digital initial consultation for new business.

ImmOS.Compass identifies financing potential early, assesses affordability intelligently and strengthens customer retention with clear scenarios for the path to homeownership.

ImmOS.Compass Visual

ImmOS.Compass

The fully automated digital initial consultation for new business.

ImmOS.Compass identifies financing potential early, assesses affordability intelligently and strengthens customer retention with clear scenarios for the path to homeownership.

ImmOS.Compass Visual

/

/

/

Compass

ImmOS.Compass

The fully automated digital initial consultation for new business.

ImmOS.Compass identifies financing potential early, assesses affordability intelligently and strengthens customer retention with clear scenarios for the path to homeownership.

ImmOS.Compass 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.

Informed customers and growing competitive pressure

Informed customers and growing competitive pressure

Today’s customers expect immediate clarity on terms and affordable budgets. But simple calculators often deliver only non-binding results and low-quality leads. Without early digital engagement and guidance from the start, conversion rates drop – and competitive pressure for banks keeps rising.

Rising digital expectations

Customers research early, independently and across channels – before they ever speak to a bank.

A shifting customer journey

Affordability calculators are the entry point. Advising starts much later – but with higher expectations around quality and speed.

ImmOS.Compass is the spark for qualified leads.

A decision-support tool that makes homeownership dreams measurable, builds trust and activates future closings in a plannable way.

Part of the following bundles

Leads

Retention

Pattern

The fully integrated affordability calculator

Live on your website: customers calculate what they can realistically afford – including savings goals, timelines and financing options. Fully automated, digital and seamlessly embedded into your processes.

Pattern

The fully integrated affordability calculator

Live on your website: customers calculate what they can realistically afford – including savings goals, timelines and financing options. Fully automated, digital and seamlessly embedded into your processes.

Pattern

Leads that truly matter

You receive qualified, verified customer data early – rather than anonymous inquiries. Automatically transferred, optimally prepared and ready for immediate use in advising, financing and sales.

Pattern

Leads that truly matter

You receive qualified, verified customer data early – rather than anonymous inquiries. Automatically transferred, optimally prepared and ready for immediate use in advising, financing and sales.

Pattern

Building trust early

You accompany your customers throughout their decision phase with relevant information, clear guidance and smart pre-qualification – positioning yourself as a trusted financing partner right from the start.

Pattern

Building trust early

You accompany your customers throughout their decision phase with relevant information, clear guidance and smart pre-qualification – positioning yourself as a trusted financing partner right from the start.

Logo ImmOS.Compass

ImmOS.

Compass

Compass

Benefits that deliver value on both sides.

Benefits for you

Benefits for customers

Bank

Qualified leads that fit better with your products and processes

Trust built early through clear, transparent information

More stable customer relationships thanks to relevant touchpoints

Customers

More orientation and greater confidence in financial decisions

Stronger trust in their financing partner through transparent content

Digital support available anytime

Benefits for you

Benefits for customers

Bank

Qualified leads that fit better with your products and processes

Trust built early through clear, transparent information

More stable customer relationships thanks to relevant touchpoints

Customers

More orientation and greater confidence in financial decisions

Stronger trust in their financing partner through transparent content

Digital support available anytime

Bank

Customers

Bank

Qualified leads that fit better with your products and processes

Trust built early through clear, transparent information

More stable customer relationships thanks to relevant touchpoints

Customers

More orientation and greater confidence in financial decisions

Stronger trust in their financing partner through transparent content

Digital support available anytime

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.Compass?

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.Compass?

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.Compass?

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.Compass?

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