Leaders Insights
Leaders Insights

Rester au meilleur niveau, un peu chaque jour.

DomainesMarketingDataFinanceIA
RessourcesApprendreTestOutilsBlogGlossaire
© 2026 Leaders Insights — Tous droits réservés.
Formations/Marketing in real estate/Metrics, funnels and benchmarks/Reading the funnel: inquiry, viewing, offer, close ratios
3/5+150 XP

Metrics, funnels and benchmarks

5Cost per lead vs cost per closing: the metric switch that matters+1506Calculating buyer and tenant lifetime value in real estate+1507Reading the funnel: inquiry, viewing, offer, close ratios+1508Engagement metrics that predict a sale, not just clicks+1509Benchmarking your numbers against the local market+150

Reading the funnel: inquiry, viewing, offer, close ratios

# Reading the funnelfunnelThe customer journey from awareness to purchase, typically Awareness, Interest, Consideration, Decision, Action, with prospects narrowing at each stage.Voir la définition complète →: inquiry, viewing, offer, close ratios

A regional brokerage runs 500 inquiries a month through its listings. Forty book a viewing. Eight make an offer. Three close. Everyone in the weekly meeting agrees "the funnelfunnelThe customer journey from awareness to purchase, typically Awareness, Interest, Consideration, Decision, Action, with prospects narrowing at each stage.Voir la définition complète → is soft," but nobody agrees where. That disagreement costs money, because the fix for a viewing problem (better listing photos, faster response times) is completely different from the fix for a closing problem (financing friction, appraisal gaps). This lesson gives you the ratios to diagnose it precisely.

The four-stage funnelfunnelThe customer journey from awareness to purchase, typically Awareness, Interest, Consideration, Decision, Action, with prospects narrowing at each stage.Voir la définition complète →, defined

Real estate marketing funnels compress into four stages, each with its own conversion rateconversion rateThe percentage of visitors or prospects who complete a desired action (purchase, sign-up, contact form), calculated as conversions divided by total opportunities.Voir la définition complète →:

  • Inquiry: a lead action, a form fill, a call, a portal message on Zillow or Rightmove, a walk-in.
  • Viewing: the lead physically (or virtually) tours the property.
  • Offer: the lead submits a formal purchase offer or signs a letter of intent.
  • Close: the transaction completes, title transfers or lease is signed.

Each transition has a conversion rateconversion rateThe percentage of visitors or prospects who complete a desired action (purchase, sign-up, contact form), calculated as conversions divided by total opportunities.Voir la définition complète →, and each rate is a diagnostic:

  • Inquiry-to-viewing rate = viewings ÷ inquiries. Measures lead quality and responsiveness.
  • Viewing-to-offer rate = offers ÷ viewings. Measures product-market fitproduct-market fitThe moment your product genuinely solves a real problem for a well-defined market, so users retain, refer and pay willingly.Voir la définition complète →: does the property match what the qualified lead actually wants at that price.
  • Offer-to-close rate = closes ÷ offers. Measures deal execution: financing, negotiation, inspection, legal friction.

Worked example from the brokerage above:

  • Inquiry-to-viewing: 40 ÷ 500 = 8%
  • Viewing-to-offer: 8 ÷ 40 = 20%
  • Offer-to-close: 3 ÷ 8 = 37.5%

An 8% inquiry-to-viewing rate is low. That points to a top-of-funnelfunnelThe customer journey from awareness to purchase, typically Awareness, Interest, Consideration, Decision, Action, with prospects narrowing at each stage.Voir la définition complète → problem (lead quality or slow follow-up), not a closing problem. If this brokerage instead had 25% inquiry-to-viewing but only 5% offer-to-close, the diagnosis flips entirely toward financing or pricing friction.

Why ratios differ sharply by Segment

This is the core insight: there is no single "good" funnelfunnelThe customer journey from awareness to purchase, typically Awareness, Interest, Consideration, Decision, Action, with prospects narrowing at each stage.Voir la définition complète → benchmark in real estate. The stage that leaks depends on the asset type.

Resale homes (existing single-family or condo units, individual sellers). Viewing-to-offer tends to be the most volatile stage because buyers are comparing many similar listings simultaneously. Estimate for the US, as of 2025 to 2026: viewing-to-offer rates in competitive metro markets can run 15 to 30%, per anecdotal brokerage data aggregated by National Association of Realtors research reports. Offer-to-close is typically higher (70 to 85% as an estimate) once financing is pre-qualified, because the buyer has already self-selected into a specific unit.

New developments (pre-sale or off-plan units sold directly by a developer). Inquiry volumes are huge (digital ad campaigns, show-unit visits) but inquiry-to-viewing is often low, estimated 5 to 12%, because many inquiries are early-stage browsers reacting to renderings, not floor plans. Offer-to-close, however, can be lower than resale too, estimated 50 to 65%, because deposits are refundable in many jurisdictions during cooling-off periods and buyers drop out during the 12 to 36 month construction window before completion.

Rentals (residential leasing, build-to-rent or individual landlords). The funnelfunnelThe customer journey from awareness to purchase, typically Awareness, Interest, Consideration, Decision, Action, with prospects narrowing at each stage.Voir la définition complète → compresses dramatically: inquiry-to-viewing is often high (30 to 50% estimate) because rental decisions move fast, but viewing-to-offer (in this case, application submission) and offer-to-close (application approved and lease signed) happen within days, not months. Rental funnels are volume businesses: thin margins per lead, high velocity.

The practical implication: if you manage a mixed portfolio (a brokerage selling resale, marketing a new tower, and leasing units in the same building) and you benchmark all three against one blended conversion rateconversion rateThe percentage of visitors or prospects who complete a desired action (purchase, sign-up, contact form), calculated as conversions divided by total opportunities.Voir la définition complète →, you will misdiagnose at least two of them.

A simple diagnostic snippet

Marketing teams increasingly track this in a CRMCRMCustomer Relationship Management: software and strategy to manage and analyse customer interactions throughout their lifecycle.Voir la définition complète → (customer relationship managementcustomer relationship managementCustomer Relationship Management: software and strategy to manage and analyse customer interactions throughout their lifecycle.Voir la définition complète →, software that logs each lead's stage) rather than a spreadsheet. Here is the logic in pseudocode, the kind an analyst would build in SQLSQLSales Qualified Lead: a prospect the sales team has validated as ready for direct outreach and a proposal, having passed clear qualification criteria.Voir la définition complète → or a BIBITechnologies and processes that turn raw data into actionable insights via reporting, dashboards and analysis, so teams can decide based on facts rather than intuition.Voir la définition complète → tool:

sql
SELECT
  asset_type,
  COUNT(DISTINCT CASE WHEN stage >= 'viewing' THEN lead_id END)::float
    / COUNT(DISTINCT CASE WHEN stage >= 'inquiry' THEN lead_id END) AS inq_to_view,
  COUNT(DISTINCT CASE WHEN stage >= 'offer' THEN lead_id END)::float
    / COUNT(DISTINCT CASE WHEN stage >= 'viewing' THEN lead_id END) AS view_to_offer,
  COUNT(DISTINCT CASE WHEN stage = 'closed' THEN lead_id END)::float
    / COUNT(DISTINCT CASE WHEN stage >= 'offer' THEN lead_id END) AS offer_to_close
FROM leads
GROUP BY asset_type;

Running this by asset_type (resale, new development, rental) rather than in aggregate is the single most important query design decision in this lesson.

Connecting the funnelfunnelThe customer journey from awareness to purchase, typically Awareness, Interest, Consideration, Decision, Action, with prospects narrowing at each stage.Voir la définition complète → to CACCACCustomer Acquisition Cost (CAC) is the total sales and marketing spend divided by the number of new customers gained in a period. It measures how efficiently you grow.Voir la définition complète → and LTVLTVLifetime Value: the total revenue (or profit) a customer generates throughout their entire relationship with your business.Voir la définition complète →

FunnelFunnelThe customer journey from awareness to purchase, typically Awareness, Interest, Consideration, Decision, Action, with prospects narrowing at each stage.Voir la définition complète → ratios are not academic, they feed directly into CACCACCustomer Acquisition Cost (CAC) is the total sales and marketing spend divided by the number of new customers gained in a period. It measures how efficiently you grow.Voir la définition complète → (customer acquisition costcustomer acquisition costCustomer Acquisition Cost (CAC) is the total sales and marketing spend divided by the number of new customers gained in a period. It measures how efficiently you grow.Voir la définition complète →: total marketing and sales spend divided by number of closed deals) and pipelinepipelineAll active sales opportunities across the stages of the sales process, together with their combined potential value and probability of closing.Voir la définition complète → forecasting.

If a developer spends $200,000 on digital campaigns generating 2,000 inquiries, and the funnelfunnelThe customer journey from awareness to purchase, typically Awareness, Interest, Consideration, Decision, Action, with prospects narrowing at each stage.Voir la définition complète → converts at 8% to viewing, 20% to offer, 55% to close, the math is:

  • Viewings: 2,000 × 0.08 = 160
  • Offers: 160 × 0.20 = 32
  • Closes: 32 × 0.55 = 17.6 (round to 18)
  • CACCACCustomer Acquisition Cost (CAC) is the total sales and marketing spend divided by the number of new customers gained in a period. It measures how efficiently you grow.Voir la définition complète → = $200,000 ÷ 18 ≈ $11,111 per closed unit

Compare that to a resale brokerage with a leaner funnelfunnelThe customer journey from awareness to purchase, typically Awareness, Interest, Consideration, Decision, Action, with prospects narrowing at each stage.Voir la définition complète → (8% → 25% → 80%) generating the same 2,000 inquiries: 160 viewings, 40 offers, 32 closes, CACCACCustomer Acquisition Cost (CAC) is the total sales and marketing spend divided by the number of new customers gained in a period. It measures how efficiently you grow.Voir la définition complète → ≈ $6,250. Same top-of-funnelfunnelThe customer journey from awareness to purchase, typically Awareness, Interest, Consideration, Decision, Action, with prospects narrowing at each stage.Voir la définition complète → spend and volume, radically different unit economics, purely because the middle and bottom of the funnelfunnelThe customer journey from awareness to purchase, typically Awareness, Interest, Consideration, Decision, Action, with prospects narrowing at each stage.Voir la définition complète → behave differently by segment. This is why blending CACCACCustomer Acquisition Cost (CAC) is the total sales and marketing spend divided by the number of new customers gained in a period. It measures how efficiently you grow.Voir la définition complète → across asset types on one dashboard is a common and costly reporting error.

Where leaks actually get fixed

  • Inquiry-to-viewing leak: usually a response-speed problem. Industry data cited by Zillow's research team has long shown that leads contacted within minutes convert to viewings at meaningfully higher rates than those contacted hours later. This is an operations and CRMCRMCustomer Relationship Management: software and strategy to manage and analyse customer interactions throughout their lifecycle.Voir la définition complète → automation fix, not an ad-spend fix.
  • Viewing-to-offer leak: usually a pricing or product-fit problem. If prospects tour but don't offer, the listing is often mispriced relative to comparable inventory, or the property has an unaddressed defect (layout, condition, location trade-off) that photos didn't reveal.
  • Offer-to-close leak: usually a financing or transaction-friction problem: mortgage pre-approval delays, appraisal gaps (when the bank's valuation comes in below the offer price), or, in new developments, buyer financing falling through during long construction timelines.

Vérification des acquis

1. A brokerage has a low inquiry-to-viewing rate but a strong offer-to-close rate. What does this pattern most likely indicate?

2. Why is it important to distinguish between viewing-to-offer rate and offer-to-close rate rather than just looking at overall inquiry-to-close conversion?

3. A property has a healthy viewing-to-offer rate but many viewers who attend never submit an offer relative to industry norms. What does a low viewing-to-offer rate primarily suggest?

CHOIX MULTIPLES

4. Select ALL correct answers about what the offer-to-close rate measures and how it should be interpreted.

Sélectionnez toutes les réponses correctes.

CHOIX MULTIPLES

5. Select ALL correct answers about why teams can disagree about where a funnel is 'soft' without calculating stage-specific ratios.

Sélectionnez toutes les réponses correctes.

Benchmarking Responsibly

Because brokerages rarely publish granular funnelfunnelThe customer journey from awareness to purchase, typically Awareness, Interest, Consideration, Decision, Action, with prospects narrowing at each stage.Voir la définition complète → data publicly, treat all sector figures above as directional estimates, not audited statistics. Good practice for a real analyst:

1. Build your own baseline from at least 6 to 12 months of CRMCRMCustomer Relationship Management: software and strategy to manage and analyse customer interactions throughout their lifecycle.Voir la définition complète → data before comparing to any external benchmark.

2. Segment every ratio by asset type and by lead source (portal, referral, paid search, walk-in), because a "referral" lead and a "cold portal" lead have structurally different viewing and close rates.

3. Re-baseline seasonally. Viewing-to-offer rates in resale markets, for instance, often tighten in spring selling seasons across much of the US and parts of Europe, then loosen in winter, an estimate-level pattern, not a fixed law.

🎬 [VIDEO: "How to Build a Real Estate Sales FunnelSales FunnelThe customer journey from awareness to purchase, typically Awareness, Interest, Consideration, Decision, Action, with prospects narrowing at each stage.Voir la définition complète →" - youtube.com - search for recent brokerage or proptech channel walkthroughs of CRMCRMCustomer Relationship Management: software and strategy to manage and analyse customer interactions throughout their lifecycle.Voir la définition complète →-based lead-to-close tracking, useful for seeing funnelfunnelThe customer journey from awareness to purchase, typically Awareness, Interest, Consideration, Decision, Action, with prospects narrowing at each stage.Voir la définition complète → stages instrumented in real dashboards]

Key Takeaways

  • The funnelfunnelThe customer journey from awareness to purchase, typically Awareness, Interest, Consideration, Decision, Action, with prospects narrowing at each stage.Voir la définition complète → has four diagnosable stages: inquiry-to-viewing (lead quality/speed), viewing-to-offer (pricing/product fit), offer-to-close (financing/execution). Each needs a different fix.
  • Benchmarks differ sharply by segment: new developments typically leak most at inquiry-to-viewing and offer-to-close; resale leaks most at viewing-to-offer; rentals move fast with compressed timelines. Treat all cited percentages as estimates, not verified industry standards.
  • Never blend CACCACCustomer Acquisition Cost (CAC) is the total sales and marketing spend divided by the number of new customers gained in a period. It measures how efficiently you grow.Voir la définition complète → or conversion rates across asset types on one dashboard, it hides exactly the leak you're trying to find.
  • Always segment data by lead source and season before declaring a stage "broken."

Précédent

Calculating buyer and tenant lifetime value in real estate

Suivant

Engagement metrics that predict a sale, not just clicks

funnel
funnelThe customer journey from awareness to purchase, typically Awareness, Interest, Consideration, Decision, Action, with prospects narrowing at each stage.Voir la définition complète →
  • Fast response time to inquiries is one of the most consistently cited levers for lifting inquiry-to-viewing conversion, and it's an operations fix, not a bigger ad budget.