splitforms.com
REAL ESTATE · CONTACT FORM TEMPLATE

Contact Form for Real Estate Agents

The buyer-lead form your IDX site should have shipped with — budget range, areas of interest, beds/baths, financing status, timeline. The fields a Realtor actually qualifies on.

1,000/mo free·no card·works on any host
form.htmlhtml60 lines
01<form action="https://splitforms.com/api/submit" method="POST">
02 <input type="hidden" name="access_key" value="YOUR_ACCESS_KEY">
03 <input type="hidden" name="subject" value="New buyer lead">
04
05 <label for="name">Full name *</label>
06 <input id="name" type="text" name="name" placeholder="Marcus Lim" required>
07 <label for="email">Email *</label>
08 <input id="email" type="email" name="email" placeholder="marcus@example.com" required>
09 <label for="phone">Phone *</label>
10 <input id="phone" type="tel" name="phone" placeholder="+1 415 555 0142" required>
11 <label for="property">Property of interest</label>
12 <input id="property" type="text" name="property" placeholder="1247 Valencia St — 2BR">
13 <label for="budget">Budget *</label>
14 <select id="budget" name="budget" required>
15 <option value="">Choose…</option>
16 <option>Under $300k</option>
17 <option>$300k–$500k</option>
18 <option>$500k–$750k</option>
19 <option>$750k–$1M</option>
20 <option>$1M–$2M</option>
21 <option>$2M+</option>
22 </select>
23 <label for="bedrooms">Bedrooms</label>
24 <select id="bedrooms" name="bedrooms">
25 <option value="">Choose…</option>
26 <option>Studio</option>
27 <option>1</option>
28 <option>2</option>
29 <option>3</option>
30 <option>4+</option>
31 </select>
32 <label for="timeline">Looking to buy *</label>
33 <select id="timeline" name="timeline" required>
34 <option value="">Choose…</option>
35 <option>This month</option>
36 <option>1–3 months</option>
37 <option>3–6 months</option>
38 <option>6–12 months</option>
39 <option>Just exploring</option>
40 </select>
41 <label for="preapproved">Mortgage pre-approval</label>
42 <select id="preapproved" name="preapproved">
43 <option value="">Choose…</option>
44 <option>Yes, pre-approved</option>
45 <option>In progress</option>
46 <option>Cash buyer</option>
47 <option>Not yet</option>
48 </select>
49 <label for="notes">Anything else we should know?</label>
50 <textarea id="notes" name="notes" placeholder="Neighborhoods, must-haves, deal breakers…"></textarea>
51
52 <!-- honeypot — bots fill every field -->
53 <input type="checkbox" name="botcheck" style="display:none" tabindex="-1" autocomplete="off">
54
55 <button type="submit">Send</button>
56</form>
57
58<p style="margin-top:12px;font-size:11px;color:#888;text-align:right">
59 Powered by <a href="https://splitforms.com" style="color:#888;text-decoration:none" target="_blank" rel="noopener">splitforms</a>
60</p>
1,000
submissions / mo, free
9
fields, ready to ship
5
code outputs
60s
from copy to inbox
§ 01Why it mattersthe qualifying-fields argument

A 'contact us' form on a Realtor's site that only asks for name and email is a wasted lead. By the time you call the buyer back, they've already inquired with three other agents. The form needs to qualify on the spot — price band, target neighbourhoods, beds/baths, whether they're pre-approved, and how soon they want to move. With those five fields you know whether to call them today or drop them in a long-term nurture sequence.

Wired into Follow Up Boss / kvCORE / Lofty in under 10 minutes via webhook.
✦ at a glance
  • Real estate buyer inquiry · 9 fields
  • HTML, JS, React, PHP, cURL outputs
  • One POST endpoint, no SDK
  • Honeypot + classifier, no CAPTCHA
§ 02Live previewinteractive · sandboxed · no key required

See exactly what your visitors see — and you’ll receive.

Left: the rendered form, fully interactive in a sandboxed iframe. Right: the email and dashboard view that lands the moment a visitor submits.

preview · real-estate-agent-contact-formlocalhost:3000
✦ what you’ll see in your inbox

Every submission becomes an email plus a dashboard row. The fields below are the exact payload your form will send. Reply-to is wired to the visitor’s email so hitting reply goes back to them.

dashboard · new submission14ms · 200 OK
SUBJECT · New buyer lead
Full name
Maya Iyer
Email
maya@studio71.co
Phone
+1 415 555 0142
Property of interest
Budget
$650k — $850k
Bedrooms
3
Looking to buy
30–60 days
Mortgage pre-approval
Yes, pre-approved
Anything else we should know?
Loved your last open house in Hayes — looking for similar with parking. Pre-approved through Wells Fargo.

Iframe is sandboxed — submit doesn’t actually fire. Get your access key to wire it up live.

§ 03Three steps3 steps · ~60 seconds

Generate, embed, receive.

Three actions stand between you and your first lead. None of them require a backend, a database, or a CAPTCHA library.

STEP 01GENERATE

Drop the form into your IDX site

Works on any IDX-powered site — Wix, Squarespace, Real Geeks, Sierra, BoomTown, Placester, or a custom Next.js build. Paste the HTML into the page or a contact partial.

Create your form
key=sk_live_••••••••
STEP 02EMBED

Qualify on submit

Required fields: budget, target area, beds, timeline. Optional: pre-approval status and current home situation. The Realtor's day is shaped by which leads have those filled in.

snippethtml
<form action="https://splitforms.com/api/submit" method="POST">
  …
</form>
STEP 03RECEIVE

Forward to your CRM

Webhook the submission straight into Follow Up Boss, kvCORE, Lofty, or Zapier. Hot leads (timeline 30 days, pre-approved) trigger an SMS to your phone via the webhook.

inbox · 1 newjust now
FROM contact@yoursite.com
New buyer lead
Maya Iyer maya@studio71.co
Loved your last open house in Hayes — looking for similar with parking. Pre-approved through Wells Fargo.
§ 04Copy & ship5 languages · same endpoint

Five outputs. One backend.

HTML by default. Click open the language you ship in — every variant POSTs to the same /api/submit endpoint.

01HTMLform.html60 lines
<form action="https://splitforms.com/api/submit" method="POST">
  <input type="hidden" name="access_key" value="YOUR_ACCESS_KEY">
  <input type="hidden" name="subject" value="New buyer lead">

  <label for="name">Full name *</label>
  <input id="name" type="text" name="name" placeholder="Marcus Lim" required>
  <label for="email">Email *</label>
  <input id="email" type="email" name="email" placeholder="marcus@example.com" required>
  <label for="phone">Phone *</label>
  <input id="phone" type="tel" name="phone" placeholder="+1 415 555 0142" required>
  <label for="property">Property of interest</label>
  <input id="property" type="text" name="property" placeholder="1247 Valencia St — 2BR">
  <label for="budget">Budget *</label>
  <select id="budget" name="budget" required>
    <option value="">Choose…</option>
    <option>Under $300k</option>
    <option>$300k–$500k</option>
    <option>$500k–$750k</option>
    <option>$750k–$1M</option>
    <option>$1M–$2M</option>
    <option>$2M+</option>
  </select>
  <label for="bedrooms">Bedrooms</label>
  <select id="bedrooms" name="bedrooms">
    <option value="">Choose…</option>
    <option>Studio</option>
    <option>1</option>
    <option>2</option>
    <option>3</option>
    <option>4+</option>
  </select>
  <label for="timeline">Looking to buy *</label>
  <select id="timeline" name="timeline" required>
    <option value="">Choose…</option>
    <option>This month</option>
    <option>1–3 months</option>
    <option>3–6 months</option>
    <option>6–12 months</option>
    <option>Just exploring</option>
  </select>
  <label for="preapproved">Mortgage pre-approval</label>
  <select id="preapproved" name="preapproved">
    <option value="">Choose…</option>
    <option>Yes, pre-approved</option>
    <option>In progress</option>
    <option>Cash buyer</option>
    <option>Not yet</option>
  </select>
  <label for="notes">Anything else we should know?</label>
  <textarea id="notes" name="notes" placeholder="Neighborhoods, must-haves, deal breakers…"></textarea>

  <!-- honeypot — bots fill every field -->
  <input type="checkbox" name="botcheck" style="display:none" tabindex="-1" autocomplete="off">

  <button type="submit">Send</button>
</form>

<p style="margin-top:12px;font-size:11px;color:#888;text-align:right">
  Powered by <a href="https://splitforms.com" style="color:#888;text-decoration:none" target="_blank" rel="noopener">splitforms</a>
</p>
02JavaScriptform.js76 lines
<form id="lf-form">
  <label for="name">Full name *</label>
  <input id="name" type="text" name="name" placeholder="Marcus Lim" required>
  <label for="email">Email *</label>
  <input id="email" type="email" name="email" placeholder="marcus@example.com" required>
  <label for="phone">Phone *</label>
  <input id="phone" type="tel" name="phone" placeholder="+1 415 555 0142" required>
  <label for="property">Property of interest</label>
  <input id="property" type="text" name="property" placeholder="1247 Valencia St — 2BR">
  <label for="budget">Budget *</label>
  <select id="budget" name="budget" required>
    <option value="">Choose…</option>
    <option>Under $300k</option>
    <option>$300k–$500k</option>
    <option>$500k–$750k</option>
    <option>$750k–$1M</option>
    <option>$1M–$2M</option>
    <option>$2M+</option>
  </select>
  <label for="bedrooms">Bedrooms</label>
  <select id="bedrooms" name="bedrooms">
    <option value="">Choose…</option>
    <option>Studio</option>
    <option>1</option>
    <option>2</option>
    <option>3</option>
    <option>4+</option>
  </select>
  <label for="timeline">Looking to buy *</label>
  <select id="timeline" name="timeline" required>
    <option value="">Choose…</option>
    <option>This month</option>
    <option>1–3 months</option>
    <option>3–6 months</option>
    <option>6–12 months</option>
    <option>Just exploring</option>
  </select>
  <label for="preapproved">Mortgage pre-approval</label>
  <select id="preapproved" name="preapproved">
    <option value="">Choose…</option>
    <option>Yes, pre-approved</option>
    <option>In progress</option>
    <option>Cash buyer</option>
    <option>Not yet</option>
  </select>
  <label for="notes">Anything else we should know?</label>
  <textarea id="notes" name="notes" placeholder="Neighborhoods, must-haves, deal breakers…"></textarea>
  <button type="submit">Send</button>
</form>

<p style="margin-top:12px;font-size:11px;color:#888;text-align:right">
  Powered by <a href="https://splitforms.com" style="color:#888;text-decoration:none" target="_blank" rel="noopener">splitforms</a>
</p>

<script>
  document.getElementById('lf-form').addEventListener('submit', async (e) => {
    e.preventDefault();
    const data = new FormData(e.target);
    data.set('access_key', 'YOUR_ACCESS_KEY');
    data.set('subject', 'New buyer lead');

    const res = await fetch('https://splitforms.com/api/submit', {
      method: 'POST',
      body: data,
      headers: { Accept: 'application/json' },
    });

    const json = await res.json();
    if (json.success) {
      e.target.reset();
      alert('Sent!');
    } else {
      alert('Error: ' + (json.message || 'Try again'));
    }
  });
</script>
03React / Next.jsForm.tsx91 lines
'use client';

import { useState, type FormEvent } from 'react';

export default function RealEstateBuyerForm() {
  const [status, setStatus] = useState<'idle' | 'sending' | 'sent' | 'error'>('idle');

  async function onSubmit(e: FormEvent<HTMLFormElement>) {
    e.preventDefault();
    setStatus('sending');

    const data = new FormData(e.currentTarget);
    data.set('access_key', 'YOUR_ACCESS_KEY');
    data.set('subject', 'New buyer lead');

    const res = await fetch('https://splitforms.com/api/submit', {
      method: 'POST',
      body: data,
      headers: { Accept: 'application/json' },
    });

    const json = await res.json();
    setStatus(json.success ? 'sent' : 'error');
    if (json.success) e.currentTarget.reset();
  }

  if (status === 'sent') return <p>Thanks — we&rsquo;ll be in touch.</p>;

  return (
    <>
    <form onSubmit={onSubmit}>
      <label htmlFor="name">Full name *</label>
      <input id="name" type="text" name="name" placeholder="Marcus Lim" required />
      <label htmlFor="email">Email *</label>
      <input id="email" type="email" name="email" placeholder="marcus@example.com" required />
      <label htmlFor="phone">Phone *</label>
      <input id="phone" type="tel" name="phone" placeholder="+1 415 555 0142" required />
      <label htmlFor="property">Property of interest</label>
      <input id="property" type="text" name="property" placeholder="1247 Valencia St — 2BR" />
      <label htmlFor="budget">Budget *</label>
      <select id="budget" name="budget" required>
        <option value="">Choose…</option>
        <option>Under $300k</option>
        <option>$300k–$500k</option>
        <option>$500k–$750k</option>
        <option>$750k–$1M</option>
        <option>$1M–$2M</option>
        <option>$2M+</option>
      </select>
      <label htmlFor="bedrooms">Bedrooms</label>
      <select id="bedrooms" name="bedrooms">
        <option value="">Choose…</option>
        <option>Studio</option>
        <option>1</option>
        <option>2</option>
        <option>3</option>
        <option>4+</option>
      </select>
      <label htmlFor="timeline">Looking to buy *</label>
      <select id="timeline" name="timeline" required>
        <option value="">Choose…</option>
        <option>This month</option>
        <option>1–3 months</option>
        <option>3–6 months</option>
        <option>6–12 months</option>
        <option>Just exploring</option>
      </select>
      <label htmlFor="preapproved">Mortgage pre-approval</label>
      <select id="preapproved" name="preapproved">
        <option value="">Choose…</option>
        <option>Yes, pre-approved</option>
        <option>In progress</option>
        <option>Cash buyer</option>
        <option>Not yet</option>
      </select>
      <label htmlFor="notes">Anything else we should know?</label>
      <textarea id="notes" name="notes" placeholder="Neighborhoods, must-haves, deal breakers…" />

      <button type="submit" disabled={status === 'sending'}>
        {status === 'sending' ? 'Sending…' : 'Send'}
      </button>

      {status === 'error' && <p>Something went wrong. Try again.</p>}
    </form>

      <p style={{ marginTop: 12, fontSize: 11, color: '#888', textAlign: 'right' }}>
        Powered by <a href="https://splitforms.com" target="_blank" rel="noopener" style={{ color: '#888', textDecoration: 'none' }}>splitforms</a>
      </p>
    </>
  );
}
04PHPsubmit.php28 lines
<?php
// Drop into a PHP page. Receives a form POST and proxies it to splitforms.com.
// Useful when you want to add server-side validation or rate limiting.

if ($_SERVER['REQUEST_METHOD'] === 'POST') {
    $allowed = ['name', 'email', 'phone', 'property', 'budget', 'bedrooms', 'timeline', 'preapproved', 'notes'];
    $payload = ['access_key' => 'YOUR_ACCESS_KEY'];
    $payload['subject'] = 'New buyer lead';

    foreach ($allowed as $f) {
        if (isset($_POST[$f])) $payload[$f] = $_POST[$f];
    }

    $ch = curl_init('https://splitforms.com/api/submit');
    curl_setopt($ch, CURLOPT_POST, true);
    curl_setopt($ch, CURLOPT_POSTFIELDS, http_build_query($payload));
    curl_setopt($ch, CURLOPT_RETURNTRANSFER, true);
    curl_setopt($ch, CURLOPT_HTTPHEADER, ['Accept: application/json']);
    $response = curl_exec($ch);
    $status   = curl_getinfo($ch, CURLINFO_HTTP_CODE);
    curl_close($ch);

    header('Content-Type: application/json');
    http_response_code($status);
    echo $response;
    exit;
}
?>
05cURLtest.sh13 lines
curl -X POST https://splitforms.com/api/submit \
  -H "Accept: application/json" \
  -d "access_key=YOUR_ACCESS_KEY" \
  -d "subject=New buyer lead" \
  -d "name=Jane Builder" \
  -d "email=jane@example.com" \
  -d "phone=+15555555555" \
  -d "property=Jane Builder" \
  -d "budget=Under $300k" \
  -d "bedrooms=Studio" \
  -d "timeline=This month" \
  -d "preapproved=Yes, pre-approved" \
  -d "notes=Hello from cURL" 

Replace YOUR_ACCESS_KEY with the key from your dashboard. That’s the only edit.

§ 06FAQ4 answered

Things people ask before they ship.

Direct answers, no marketing fluff. Missing one? Email hello@splitforms.com.

01Will this work with my IDX provider (Real Geeks, kvCORE, etc.)?
Yes — the form is plain HTML and posts to splitforms, not your IDX. Most IDX dashboards let you embed custom HTML on landing pages or use a custom contact partial. Submissions arrive in your splitforms inbox and webhook out to your CRM of choice.
02Can I route buyer leads to one agent and seller leads to another?
Yes — use one form per intent (this one for buyers, the home-valuation form for sellers) and set a different BCC / webhook on each. Or use a single form with a 'I'm a buyer / seller / both' radio and a webhook that routes on that field.
03Is the lead data NAR / MLS compliant?
splitforms stores submissions encrypted at rest and lets you delete them on request. There's no MLS data on the form itself — you collect lead-side info only — so MLS compliance lives with your IDX provider, not with us.
04How fast do leads usually call back?
Industry data says response within 5 minutes is 21x more likely to convert than 30 minutes. Webhook the submission to a Twilio SMS or a phone-call API and you're inside that window automatically.
✻ ✻ ✻

Ship your contact form for real estate agents in 60 seconds.

1,000 free submissions per month. No credit card. Copy the snippet, paste your access key, watch leads land in your inbox.

Get free access key →Browse all 60 templates →
v0.1 · founders pricing locked in · early access open