Real Estate Templates
Deeds, leases, appraisals, and property documents. Structurify provides 5 templates for this category.
Available Templates
| Template | ID | Description |
|---|---|---|
| Lease Abstraction | ptpl_lease | Extract key terms from commercial leases |
| Property Inspection | ptpl_property_inspection | Extract findings from property inspection reports |
| Commercial Lease Abstraction | ptpl_commercial_lease | Extract comprehensive terms from commercial real estate leases for due diligence |
| Rent Roll | ptpl_rent_roll | Extract tenant and rent data from property rent rolls for underwriting and valua |
| CAM Reconciliation | ptpl_cam_reconciliation | Extract 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
- Run in Google Colab - Interactive notebooks
- CodeSandbox Examples - Node.js examples