Developer Preview

LeaseAI Developer API

Coming Soon

A REST API for programmatic lease analysis — built for property managers, law firms, and CRE platforms that need to extract and analyze lease data at scale.

Property Managers

Bulk-extract terms from entire lease portfolios in minutes.

Law Firms

Automate lease review and due diligence for transactions.

CRE Platforms

Embed lease intelligence directly into your SaaS product.

Planned Endpoints

POST/api/v1/extract

Upload a lease PDF and extract structured data. Returns JSON with key terms, dates, financials, and clause analysis.

Request

curl -X POST https://api.tryleaseai.com/api/v1/extract \
  -H "Authorization: Bearer YOUR_API_KEY" \
  -H "Content-Type: multipart/form-data" \
  -F "file=@lease.pdf" \
  -F "options={\"include_clauses\": true}"

Response

{
  "id": "rpt_abc123",
  "status": "completed",
  "data": {
    "tenant": "Acme Corp",
    "landlord": "Realty Holdings LLC",
    "premises": "Suite 400, 123 Main St",
    "rentable_sf": 5200,
    "base_rent_monthly": 13000,
    "lease_start": "2026-04-01",
    "lease_end": "2031-03-31",
    "rent_escalation": "3% annually",
    "security_deposit": 26000,
    "cam_structure": "NNN",
    "renewal_options": 2,
    "clauses": { ... }
  }
}
GET/api/v1/report/:id

Retrieve a previously generated extraction report by its ID. Reports are retained for 30 days.

Request

curl https://api.tryleaseai.com/api/v1/report/rpt_abc123 \
  -H "Authorization: Bearer YOUR_API_KEY"

Response

{
  "id": "rpt_abc123",
  "status": "completed",
  "created_at": "2026-03-20T14:30:00Z",
  "data": { ... },
  "download_url": "https://api.tryleaseai.com/reports/rpt_abc123.pdf"
}
GET/api/v1/status

Check API health and current system status. No authentication required.

Request

curl https://api.tryleaseai.com/api/v1/status

Response

{
  "status": "operational",
  "version": "1.0.0",
  "uptime": "99.9%",
  "response_time_ms": 42
}

Pricing

API pricing will be usage-based. Estimated $0.50/extraction for bulk plans, with volume discounts for enterprise customers processing 1,000+ leases per month.

Join the API Waitlist

Be the first to get access when we launch. Early waitlist members get priority onboarding.