/

/

/

BaufiHub

ImmOS.BaufiHub

Intelligent data transfer from broker portal to core banking system.

ImmOS.BaufiHub improves the data quality of submitted mortgage applications, reduces manual effort and increases the degree of automation. A tool that meaningfully relieves banks and accelerates credit decisions.

ImmOS.BaufiHub Visual

ImmOS.BaufiHub

Intelligent data transfer from broker portal to core banking system.

ImmOS.BaufiHub improves the data quality of submitted mortgage applications, reduces manual effort and increases the degree of automation. A tool that meaningfully relieves banks and accelerates credit decisions.

ImmOS.BaufiHub Visual

/

/

/

BaufiHub

ImmOS.BaufiHub

Intelligent data transfer from broker portal to core banking system.

ImmOS.BaufiHub improves the data quality of submitted mortgage applications, reduces manual effort and increases the degree of automation. A tool that meaningfully relieves banks and accelerates credit decisions.

ImmOS.BaufiHub Visual

/

/

/

BaufiHub

ImmOS.BaufiHub

Intelligent data transfer from broker portal to core banking system.

ImmOS.BaufiHub improves the data quality of submitted mortgage applications, reduces manual effort and increases the degree of automation. A tool that meaningfully relieves banks and accelerates credit decisions.

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

High effort and faulty applications

Many mortgage applications arrive at banks incomplete, incorrect or not ready for review. The result: high manual effort, long processing times and rising costs. ImmOS.BaufiHub demonstrates its value in three measurable effects.

0.0min

capacity released per mortgage

0.0min

net market time gained per mortgage

0.0min

saved time to credit decision and contract creation

ImmOS.BaufiHub turns complex into simple.

The tool is the intelligent intermediary application between lending platforms like Interhyp or BaufiSmart and the core banking system. It checks, corrects and transmits data automatically and error-free.

Part of the following bundles

Efficiency

Pattern

Better data quality

Pre-checks, plausibility rules and structured validation ensure only correct applications reach the core system.

Pattern

Better data quality

Pre-checks, plausibility rules and structured validation ensure only correct applications reach the core system.

Pattern

Automated processes

RPA-powered review and correction steps significantly reduce manual effort.

Pattern

Automated processes

RPA-powered review and correction steps significantly reduce manual effort.

Pattern

Efficient credit production

Fewer queries, fewer corrections, faster decisions.

Pattern

Efficient credit production

Fewer queries, fewer corrections, faster decisions.

Gradient Background
Pattern
UI Angaben zum Finanzierungsobjekt BaufiHub

Improved data quality across all applications

Automatic checks, clear error messages and correction suggestions ensure high data integrity throughout.

Gradient Background
Pattern
UI Übersicht aller Anträge

The integrated pre-check

Mandatory fields, plausibility checks and logical dependencies are validated before the application is forwarded.

Gradient Background
Pattern
UI zusätzliche Angaben und Eingabefelder

Robotic Process Automation

RPA handles recurring corrections and ensures stable, consistent process quality.

Logo ImmOS.BaufiHub

ImmOS.

BaufiHub

BaufiHub

Benefits that deliver value on both sides.

Benefits for you

Benefits for customers

Bank

Reduced capacity requirements

Less rework and error correction

Faster credit decisions

Customers

Faster responses and decisions

Fewer follow-up queries

Benefits for you

Benefits for customers

Bank

Reduced capacity requirements

Less rework and error correction

Faster credit decisions

Customers

Faster responses and decisions

Fewer follow-up queries

Bank

Customers

Bank

Reduced capacity requirements

Less rework and error correction

Faster credit decisions

Customers

Faster responses and decisions

Fewer follow-up queries

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

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

Jan-Philip Berendes

Head of Client & Market Relations

Alex Pohl

Product Owner

Your contacts

Interested in ImmOS.BaufiHub?

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

Jan-Philip Berendes

Head of Client & Market Relations

Alex Pohl

Product Owner

Your contacts

Interested in ImmOS.BaufiHub?

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

Jan-Philip Berendes

Head of Client & Market Relations

Alex Pohl

Product Owner

Your contacts

Interested in ImmOS.BaufiHub?

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

Jan-Philip Berendes

Head of Client & Market Relations

Alex Pohl

Product Owner