Skip to main content

Real Estate Templates

Deeds, leases, appraisals, and property documents. Structurify provides 5 templates for this category.

Available Templates

TemplateIDDescription
Lease Abstractionptpl_leaseExtract key terms from commercial leases
Property Inspectionptpl_property_inspectionExtract findings from property inspection reports
Commercial Lease Abstractionptpl_commercial_leaseExtract comprehensive terms from commercial real estate leases for due diligence
Rent Rollptpl_rent_rollExtract tenant and rent data from property rent rolls for underwriting and valua
CAM Reconciliationptpl_cam_reconciliationExtract Common Area Maintenance reconciliation data for tenant billing and audit

Example Usage

from structurify import Structurify

client = Structurify(api_key="sk_live_xxx")

# Create project with template
project = client.projects.create(
name="My Real Estate Project",
template_id="ptpl_lease"
)

# Upload and extract
doc = client.documents.upload(
project_id=project["id"],
file_path="document.pdf"
)
job = client.extraction.run(project_id=project["id"])
result = client.extraction.wait_for_completion(job["id"])

Try It