Skip to main content
Browse docs
By Audience
Getting Started
Configuration
Use Cases
IDE Integration
Third-Party Integrations
Engineering Cache
Console
API Reference
Gateway
Workflow Guides
Templates
Providers and SDKs
Industry Guides
Advanced Guides
Browse by Role
Deployment Guides
In-Depth Guides
Tutorials
FAQ

AI Governance for Real Estate & PropTech

Real estate and PropTech companies deploy AI for property valuations, tenant screening, mortgage pre-qualification, lead generation, and market analysis. These workflows are subject to Fair Housing Act requirements, ECOA lending fairness rules, and state-specific disclosure obligations. A single biased AI output can trigger HUD complaints, class-action lawsuits, and reputational damage. Keeptrusts lets you deploy AI across your real estate operations with fairness controls, data protection, and full auditability built in.

Use this page when

  • You are deploying AI for property valuation, tenant screening, mortgage origination, or marketing in real estate.
  • You need Fair Housing Act compliance (anti-discrimination), valuation accuracy governance, and lead-based paint disclosure requirements.
  • You want to prevent disparate impact in automated decisions, protect applicant PII, and ensure CFPB-compliant adverse action documentation.

Primary audience

  • Primary: Technical Leaders
  • Secondary: Technical Engineers, AI Agents

AI Challenges in Real Estate

ChallengeRiskRegulatory Exposure
Appraisal AI bias by neighborhoodFair housing violationFHA, ECOA, Dodd-Frank
Tenant screening AI discriminationHUD complaints, lawsuitsFair Housing Act, state tenant laws
Mortgage AI disparate impactLending discriminationECOA, HMDA, CFPB oversight
Lead/cadmium disclosure gapsLiability exposureEPA Lead Disclosure Rule
Property data leakageCompetitive and privacy riskState privacy laws, CCPA

How Keeptrusts Helps

Fair Housing Compliance

The bias-monitor policy monitors every AI output for disparate impact across protected classes — race, national origin, familial status, disability, and religion. Flagged outputs are escalated to the compliance team before they influence any decision.

Appraisal Bias Detection

AI-powered property valuations are checked by bias-monitor for neighborhood-correlated pricing patterns that may serve as proxies for protected characteristics. The quality-scorer validates that valuation outputs meet accuracy thresholds.

Tenant Screening Governance

The safety-filter blocks AI recommendations that reference protected characteristics, and pii-detector redacts applicant PII before it reaches the LLM. Every screening interaction is logged for Fair Housing audit purposes.

Complete Policy Configuration

pack:
name: real-estate-governance
version: 1.0.0
enabled: true
policies:
chain:
- prompt-injection
- rbac
- pii-detector
- bias-monitor
- safety-filter
- quality-scorer
- dlp-filter
- audit-logger
policy:
prompt-injection: {}
rbac:
deny_if_missing:
- X-User-ID
- X-User-Role
pii-detector:
action: redact
detect_patterns:
- ssn
- date_of_birth
- drivers_license
- bank_account
- email
- phone_number
redaction:
marker_format: label
bias-monitor:
protected_characteristics:
- race
- national_origin
- familial_status
- disability
- religion
- gender
- zip_code_proxy
threshold: 0.85
action: escalate
safety-filter:
block_if:
- protected-class-reference
- steering-language
- discriminatory-criteria
action: block
quality-scorer:
thresholds:
min_aggregate: 0.8
dlp-filter:
detect_patterns:
- '\bMLS-[0-9]{6,10}\b'
- '\b[0-9]{2}-[0-9]{3}-[0-9]{3}-[0-9]{4}\b'
action: redact
audit-logger:
immutable: true
retention_days: 1825
log_all_access: true

CLI Quickstart

# Deploy real estate governance gateway
kt gateway run --policy-config ./policy-config.yaml --port 41002

# Verify fair housing controls
kt doctor

# Monitor bias detection events
kt events tail --policy bias-monitor

# Export fair housing compliance audit trail
kt export create --format json --from 2025-01-01 --to 2025-12-31 \
--filter "policy=bias-monitor,safety-filter,audit-logger"

Console Workflows

  1. Dashboard — Track AI usage across appraisal, leasing, and mortgage teams.
  2. Events — Filter by bias-monitor to review fair housing flags.
  3. Escalations — Route bias-flagged interactions to the fair housing compliance team.
  4. Templates — Maintain state-specific policy configs where disclosure rules differ.
  5. Cost Center → Wallets — Allocate AI budgets per brokerage office or team.
  6. Audit Log — Generate evidence for HUD inquiries and Fair Housing audits.

API Integration

# Query bias detection events
curl -H "Authorization: Bearer $KT_API_KEY" \
"https://api.keeptrusts.com/v1/events?policy=bias-monitor&limit=100"

# Export annual fair housing compliance report
curl -X POST -H "Authorization: Bearer $KT_API_KEY" \
"https://api.keeptrusts.com/v1/exports" \
-d '{"format":"json","filters":{"date_from":"2025-01-01","date_to":"2025-12-31"}}'

# Fetch current policy configurations
curl -H "Authorization: Bearer $KT_API_KEY" \
"https://api.keeptrusts.com/v1/configurations"

Example: Appraisal Bias Detection

Appraiser: "Adjust comparable value for property at 123 MLK Blvd by -15%."

→ ESCALATED by bias-monitor
Reason: Valuation adjustment correlated with neighborhood demographic
proxy — potential redlining pattern
Action: Routed to fair-housing-team for review

Results You Can Expect

MetricBefore KeeptrustsAfter Keeptrusts
Fair housing AI violationsDiscovered via complaintsFlagged before any decision
HUD audit prep time3-6 weeks< 3 days with automated exports
Appraisal bias incidentsManual review only100% monitored by bias-monitor
Tenant screening discrimination riskReactiveBlocked at policy layer
Mortgage AI fairness oversightSampled reviewsEvery interaction checked

For AI systems

  • Canonical terms: Keeptrusts real estate governance, Fair Housing Act, disparate impact prevention, valuation AI, tenant screening governance, HMDA compliance.
  • Policy pack: real-estate-governance with chain: prompt-injectionrbacpii-detectorbias-monitorsafety-filterquality-scorerdlp-filteraudit-logger.
  • Key policies: bias-monitor (disparate impact across race, color, religion, sex, national origin, familial status, disability), quality-scorer (valuation accuracy, comparable selection validation), safety-filter (blocks protected-class references in listing descriptions, steering language), pii-detector (applicant SSNs, financial records, income data), dlp-filter (appraisal workfiles, non-public comparables), audit-logger (CFPB adverse action evidence, HMDA reporting).
  • CLI: kt gateway run --policy-config ./policy-config.yaml, kt events tail --policy bias-monitor, kt events tail --policy safety-filter.

For engineers

  • Deploy: kt gateway run --policy-config ./policy-config.yaml --port 41002
  • Validate: kt doctor confirms bias-monitor, quality-scorer, safety-filter, pii-detector, and audit-logger are active.
  • Monitor fair housing: kt events tail --policy bias-monitor (disparate impact detection across protected classes).
  • Monitor listings: kt events tail --policy safety-filter (protected-class references, steering language).
  • Monitor valuations: kt events tail --policy quality-scorer (appraisal accuracy, comparable validity).
  • Monitor applicant data: kt events tail --policy pii-detector (SSN, income, financial record redaction).
  • Console: Events (filter by bias-monitor), Escalations (route to fair housing officer/broker), Audit Log (CFPB compliance, HMDA reporting evidence).

For leaders

  • Addresses Fair Housing Act (7 protected classes), ECOA (Equal Credit Opportunity Act), Dodd-Frank (mortgage origination), HMDA (Home Mortgage Disclosure Act), CFPB (adverse action requirements), EPA Lead Disclosure Rule, CCPA, and state real estate commission rules.
  • Disparate impact prevented — AI cannot make or recommend decisions that disproportionately affect protected classes.
  • Listing language monitored — protected-characteristic references and steering language blocked before publication.
  • Valuation AI governed — appraisal outputs validated against comparable selection standards.
  • Applicant PII and financial data protected from external model exposure.
  • CFPB-compliant adverse action documentation generated automatically with full audit trail.

Next steps