{
  "slug": "title-insurance-cost-calculator",
  "title": "Title Insurance Cost Calculator",
  "heading": "Title Insurance & Closing Cost Calculator",
  "category": "financial",
  "url": "https://www.revenuelab.fyi/toolbox/title-insurance-cost-calculator",
  "summary": "Owner's and lender's policy premiums plus settlement fees on a purchase or refinance.",
  "description": "Title insurance is a one-time premium that protects against defects in the chain of ownership — forged deeds, undisclosed heirs, recording errors, unpaid liens — that a title search did not catch. Two policies exist: a lender's policy the mortgage requires, written for the loan amount and shrinking as you pay down, and an owner's policy written for the purchase price that protects your equity for as long as you own the property. This calculator estimates both using a rate per thousand that you can set to your state's filed schedule, applies the simultaneous-issue discount that makes the second policy far cheaper when both are bought at closing, adds the settlement and recording fees that appear on the same line of the closing disclosure, and shows the refinance reissue discount many states require when the prior policy is recent. Rates are regulated and vary widely by state; some states publish fixed rates while others allow negotiation, so use the output to sanity-check a quote rather than as a filed rate.",
  "formula": "Owner's Premium = (Price ÷ 1,000) × Rate. Lender's Premium = (Loan ÷ 1,000) × Rate × Simultaneous Discount. Total = Premiums + Settlement + Recording + Endorsements.",
  "dateModified": "2026-09-06",
  "run_url": "https://www.revenuelab.fyi/api/public/calc?tool=title-insurance-cost-calculator",
  "inputs": [
    {
      "id": "price",
      "label": "Purchase price",
      "kind": "number",
      "hint": null,
      "default": 420000,
      "unit": "$",
      "min": 20000,
      "max": 20000000
    },
    {
      "id": "loan",
      "label": "Loan amount",
      "kind": "number",
      "hint": null,
      "default": 336000,
      "unit": "$",
      "min": 0,
      "max": 20000000
    },
    {
      "id": "rate",
      "label": "Title rate per $1,000",
      "kind": "number",
      "hint": null,
      "default": 4.5,
      "unit": "$",
      "min": 1,
      "max": 15
    },
    {
      "id": "simultaneousFee",
      "label": "Simultaneous-issue lender fee",
      "kind": "number",
      "hint": null,
      "default": 150,
      "unit": "$",
      "min": 0,
      "max": 2000
    },
    {
      "id": "settlement",
      "label": "Settlement / closing fee",
      "kind": "number",
      "hint": null,
      "default": 750,
      "unit": "$",
      "min": 0,
      "max": 5000
    },
    {
      "id": "recording",
      "label": "Recording fees",
      "kind": "number",
      "hint": null,
      "default": 200,
      "unit": "$",
      "min": 0,
      "max": 3000
    },
    {
      "id": "endorsements",
      "label": "Endorsements",
      "kind": "number",
      "hint": null,
      "default": 150,
      "unit": "$",
      "min": 0,
      "max": 3000
    },
    {
      "id": "transaction",
      "label": "Transaction type",
      "kind": "select",
      "hint": null,
      "default": "purchase",
      "options": [
        {
          "value": "purchase",
          "label": "Purchase — owner's + lender's"
        },
        {
          "value": "refi",
          "label": "Refinance — lender's only"
        }
      ]
    },
    {
      "id": "reissuePct",
      "label": "Reissue discount (recent prior policy)",
      "kind": "number",
      "hint": null,
      "default": 0,
      "unit": "%",
      "min": 0,
      "max": 60
    }
  ],
  "outputs": [
    {
      "id": "total",
      "label": "Estimated title & closing cost",
      "format": "currency",
      "hint": null,
      "primary": true
    },
    {
      "id": "owners",
      "label": "Owner's policy premium",
      "format": "currency",
      "hint": null,
      "primary": false
    },
    {
      "id": "lenders",
      "label": "Lender's policy premium",
      "format": "currency",
      "hint": null,
      "primary": false
    },
    {
      "id": "fees",
      "label": "Settlement, recording, endorsements",
      "format": "currency",
      "hint": null,
      "primary": false
    },
    {
      "id": "pctOfPrice",
      "label": "Share of purchase price",
      "format": "percent",
      "hint": null,
      "primary": false
    }
  ],
  "worked_example": {
    "inputs": [
      "Purchase price: 420000 $",
      "Loan amount: 336000 $",
      "Title rate per $1,000: 4.5 $",
      "Simultaneous-issue lender fee: 150 $",
      "Settlement / closing fee: 750 $",
      "Recording fees: 200 $",
      "Endorsements: 150 $",
      "Transaction type: Purchase — owner's + lender's",
      "Reissue discount (recent prior policy): 0 %"
    ],
    "outputs": [
      "Estimated title & closing cost: $3,140",
      "Owner's policy premium: $1,890",
      "Lender's policy premium: $150",
      "Settlement, recording, endorsements: $1,100",
      "Share of purchase price: 0.75%"
    ]
  },
  "how_to": {
    "title": "How to use this",
    "steps": [
      "Enter purchase price ($).",
      "Enter loan amount ($).",
      "Enter title rate per $1,000 ($).",
      "Enter simultaneous-issue lender fee ($).",
      "Enter settlement / closing fee ($).",
      "Enter recording fees ($).",
      "Enter endorsements ($).",
      "Enter transaction type.",
      "Enter reissue discount (recent prior policy) (%).",
      "Read your estimated title & closing cost on the right — it updates as you type.",
      "Hit Share to keep the scenario or send it to someone."
    ]
  },
  "scenarios": [
    {
      "name": "Conservative",
      "description": "Lower-end numbers — what if things land soft?",
      "values": {
        "price": 250000,
        "loan": 200000,
        "rate": 4.5,
        "simultaneousFee": 100,
        "settlement": 450,
        "recording": 125,
        "endorsements": 100,
        "transaction": "purchase",
        "reissuePct": 0
      }
    },
    {
      "name": "Typical",
      "description": "Defaults — the most common real-world setup.",
      "values": {
        "price": 420000,
        "loan": 335000,
        "rate": 4.5,
        "simultaneousFee": 150,
        "settlement": 750,
        "recording": 200,
        "endorsements": 150,
        "transaction": "purchase",
        "reissuePct": 0
      }
    },
    {
      "name": "Ambitious",
      "description": "Higher-end numbers — what if things really pop?",
      "values": {
        "price": 670000,
        "loan": 540000,
        "rate": 4.5,
        "simultaneousFee": 250,
        "settlement": 1200,
        "recording": 325,
        "endorsements": 250,
        "transaction": "purchase",
        "reissuePct": 0
      }
    }
  ],
  "limitations": [
    "Results are estimates before tax, fees, and inflation unless an input explicitly covers them.",
    "Rates are treated as fixed for the whole period — variable-rate products will drift from this projection.",
    "This is educational maths, not financial advice. Check anything contractual with the lender or your accountant."
  ],
  "faq": [
    {
      "q": "Is an owner's policy optional?",
      "a": "Legally yes in most states, practically no. The lender's policy protects the lender's lien only; without an owner's policy a title defect can wipe out your equity while the loan survives. It is a one-time premium for as long as you own the home."
    },
    {
      "q": "Who pays for title insurance?",
      "a": "It varies by state and even by county custom, and it is negotiable in the purchase contract. In some markets the seller customarily buys the owner's policy; in others the buyer does."
    },
    {
      "q": "What is a reissue rate?",
      "a": "A discount when the property was insured recently — often within ten years — because the prior search covers most of the chain. Many states mandate it, but you usually have to ask and provide the old policy."
    },
    {
      "q": "Can I shop for title insurance?",
      "a": "Yes. Federal rules let you choose the settlement provider in most cases, and while premiums are filed in some states, settlement and closing fees are competitive nearly everywhere."
    }
  ],
  "related": [
    "https://www.revenuelab.fyi/toolbox/refinance-break-even-calculator",
    "https://www.revenuelab.fyi/toolbox/home-insurance-cost-estimator"
  ],
  "license": "CC-BY-4.0",
  "citation": "RevenueLab — Title Insurance Cost Calculator (https://www.revenuelab.fyi/toolbox/title-insurance-cost-calculator)"
}