AI for Real Estate PakistanModule 2

2.3WhatsApp Lead Funnel for Real Estate — Automated Follow-ups

25 min 5 code blocks Practice Lab Quiz (4Q)

WhatsApp Lead Funnel for Real Estate

85% of Pakistani real estate negotiations happen on WhatsApp (not email or phone calls). Building a WhatsApp lead funnel is the fastest way to close deals in Pakistan.

WhatsApp vs. Traditional Sales

Traditional funnel: Call → Schedule meeting → Show property → Negotiate → Close

  • Time: 1-2 weeks per lead
  • Close rate: 5-10%
  • Cost: High (commute, time, meetings)

WhatsApp funnel: Ad → WhatsApp inquiry → Auto-response → Catalog → Negotiation → Close

  • Time: 3-5 days per lead
  • Close rate: 15-20% (higher engagement)
  • Cost: Low (WATI costs PKR 1/message)

WhatsApp Lead Bot with WATI

WATI (WhatsApp Team Intelligence) integrates WhatsApp with CRM.

Setup:

  1. Create WATI account (wati.io)
  2. Connect your WhatsApp Business Account
  3. Create templates and automations
  4. Configure lead capture from ads/websites

Lead flow:

  1. Customer sees property ad on Facebook/Instagram
  2. Clicks "Send WhatsApp Inquiry"
  3. Gets auto-response with property catalog link
  4. Views photos, pricing, location map
  5. Requests property viewing
  6. Agent gets notification, follows up live
  7. Close deal

WhatsApp Templates

Template 1: Property Inquiry Response

code
"Thanks for interest in [PROPERTY]! 🏠

📍 DHA Phase 5, Karachi
💰 PKR [PRICE]
📐 [SIZE] sq ft | [BEDS] beds | [BATHS] baths

Ready to move forward? Reply with 'SCHEDULE' to book your viewing.

Regards,
[AGENT NAME]
[AGENCY]"

Template 2: Follow-up After No Response (3 days)

code
"Hi [NAME],

Still interested in the [PROPERTY] property?

We have 2 serious buyers looking at it this week. Don't miss out!

Reply ASAP or call [PHONE] to schedule your viewing. 🔥"

Template 3: Price Negotiation

code
"[NAME], thanks for the offer of PKR [OFFER].

Your offer: PKR [OFFER]
Seller's minimum: PKR [MINIMUM]

There's room to meet in the middle. Are you able to go to PKR [MIDDLE]?"

Lead Qualification Bot

Automate qualification using AI:

python
from anthropic import Anthropic

def qualify_lead(customer_message: str):
    prompt = f"""
    A real estate customer just messaged:
    "{customer_message}"

    Score their seriousness (1-10):
    - 8-10: Ready to buy (ask for viewing)
    - 5-7: Interested but hesitant (send more info)
    - 1-4: Just browsing (send catalog, move on)

    Respond with:
    1. Score (1-10)
    2. Recommended next action
    3. Suggested WhatsApp message
    """

    response = client.messages.create(
        model="claude-haiku-4-5",
        max_tokens=300,
        messages=[{"role": "user", "content": prompt}]
    )

    return response.content[0].text

# Examples
qualify_lead("Hi, how much is the DHA apartment?")  # Score: 6, send more info
qualify_lead("I want to buy ASAP, when can I view?")  # Score: 9, schedule viewing
qualify_lead("Just browsing")  # Score: 2, send catalog

Pakistan Example: Real Estate Agency WhatsApp Funnel

Amir's real estate agency (Karachi, 20 agents) implements WhatsApp funnel:

Monthly results:

  • Facebook/Instagram ads: 500 clicks
  • WhatsApp inquiries: 250 (50% conversion)
  • Property viewings: 75 (30% of inquiries)
  • Sales: 12 (15% of viewings)
  • Revenue: 12 × PKR 3M × 1% = PKR 360k commission

Compared to traditional:

  • Phone calls: 100/month
  • Viewings: 20
  • Sales: 1-2/month
  • Revenue: PKR 30-60k/month

Improvement: 6-12x more sales using WhatsApp funnel.

Cost: WATI subscription PKR 2,000/month + ads budget PKR 20,000/month = PKR 22k ROI: PKR 360k revenue - PKR 60k commission paid to agents = PKR 300k net profit

WhatsApp + AI Negotiation

Use Claude to draft negotiation messages:

python
def negotiation_message(buyer_offer: float, seller_asking: float):
    prompt = f"""
    Real estate negotiation:
    - Buyer offer: PKR {buyer_offer:,}
    - Seller asking: PKR {seller_asking:,}

    Create 3 WhatsApp messages from agent to buyer:
    1. If buyer is serious: Suggest compromise
    2. If offer is too low: Professional rejection with counter
    3. If close: Push toward closure

    Make messages conversational, not robotic.
    """

    response = client.messages.create(
        model="claude-opus-4-6",
        max_tokens=500,
        messages=[{"role": "user", "content": prompt}]
    )

    return response.content[0].text
Practice Lab

Practice Lab

Task 1: WhatsApp Funnel Design — Map out your WhatsApp lead funnel: (1) Lead source (ads, website), (2) Auto-response, (3) Follow-up sequence, (4) Qualification, (5) Negotiation, (6) Closing.

Task 2: Template Creation — Create 5 WhatsApp templates for your niche (property type, location). Include hook, details, CTA.

Conclusion

WhatsApp is the fastest sales channel in Pakistan. Agencies using WhatsApp funnels close 6-12x more deals than traditional phone/email models.

Next: Build AI-powered CRM for real estate.

Lesson Summary

Includes hands-on practice lab5 runnable code examples4-question knowledge check below

WhatsApp Lead Funnel Quiz

4 questions to test your understanding. Score 60% or higher to pass.