# Reading the funnelfunnelThe customer journey from awareness to purchase, typically Awareness, Interest, Consideration, Decision, Action, with prospects narrowing at each stage.View full definition →: 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.View full definition → 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.
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.View full definition →:
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.View full definition →, and each rate is a diagnostic:
Worked example from the brokerage above:
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.View full definition → 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.
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.View full definition → 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.View full definition → 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.View full definition →, you will misdiagnose at least two of them.
Marketing teams increasingly track this in a CRMCRMCustomer Relationship Management: software and strategy to manage and analyse customer interactions throughout their lifecycle.View full definition → (customer relationship managementcustomer relationship managementCustomer Relationship Management: software and strategy to manage and analyse customer interactions throughout their lifecycle.View full definition →, 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.View full definition → 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.View full definition → tool:
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.
FunnelFunnelThe customer journey from awareness to purchase, typically Awareness, Interest, Consideration, Decision, Action, with prospects narrowing at each stage.View full definition → 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.View full definition → (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.View full definition →: 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.View full definition → 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.View full definition → converts at 8% to viewing, 20% to offer, 55% to close, the math is:
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.View full definition → (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.View full definition → ≈ $6,250. Same top-of-funnelfunnelThe customer journey from awareness to purchase, typically Awareness, Interest, Consideration, Decision, Action, with prospects narrowing at each stage.View full definition → 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.View full definition → 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.View full definition → across asset types on one dashboard is a common and costly reporting error.
Knowledge check
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?
4. Select ALL correct answers about what the offer-to-close rate measures and how it should be interpreted.
Select all the correct answers.
5. Select ALL correct answers about why teams can disagree about where a funnel is 'soft' without calculating stage-specific ratios.
Select all the correct answers.
Because brokerages rarely publish granular funnelfunnelThe customer journey from awareness to purchase, typically Awareness, Interest, Consideration, Decision, Action, with prospects narrowing at each stage.View full definition → 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.View full definition → 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.View full definition →" - 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.View full definition →-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.View full definition → stages instrumented in real dashboards]