Supergood | Hemlane API
Programmatically access Hemlane rental property data, tenants and leases, rent payments, and maintenance workflows with a stable REST API. Supergood builds and operates production-grade, unofficial Hemlane integrations so your team can automate portfolio operations without heavy custom engineering.
Plain English: Hemlane is a property management platform for rental real estate that helps landlords and managers market listings, screen applicants, sign leases, collect rent, and coordinate maintenance with tenants and local service pros. An unofficial API lets you pull properties, units, tenants, leases, rent rolls, payment ledgers, and maintenance requests—and push updates like new service tickets or unit/lease changes back into Hemlane.
For a tech company integrating with Hemlane, this means you can ingest real-time portfolio and financial data to power dashboards, sync rent payments and fees to accounting (e.g., QuickBooks, Xero), automate maintenance triage, trigger delinquency alerts and reminders, or enrich your platform with lease and tenant context. You can also streamline showing workflows, centralize documents, and keep downstream systems (ERP, analytics, CRM, support) in sync.
Some teams report challenges around direct integrations with Hemlane—such as lack of a public API, reliance on manual CSV exports for accounting, limited webhook/event support for payments and maintenance updates, and friction when trying to automate tasks that are optimized for portal use. An unofficial API can reduce this operational drag by providing stable, programmatic access to the same data and actions you use every day in the UI.
What is Hemlane?
Hemlane (https://www.hemlane.com/) is a cloud platform for residential rental property management. It centralizes leasing, tenant communication, rent collection, accounting workflows, and maintenance coordination across owners, managers/agents, tenants, and vendors. Teams use Hemlane to advertise listings, manage inquiries and showings, screen applicants, execute leases with e-signatures, collect rent and deposits, assess late fees, coordinate repairs with local pros, and manage documents—all with tenant and owner portals for collaboration.
Core product areas include:
- Leasing & Marketing (Listings, Lead Tracking, Applications, Screening, Showings, E-Signatures)
- Rent Collection & Financials (Recurring Charges, One-Time Fees, Payments, Payouts, Refunds, Late Fees, Ledger/Reports)
- Tenant & Lease Management (Tenants, Leases, Co-signers, Notices, Documents)
- Maintenance (Tickets/Requests, Work Orders, Vendor Assignment, Messaging, Photos/Docs)
- Communications & Tasks (Messaging, Announcements, Reminders, Tasks/Follow-ups)
Common data entities:
- Users and Roles (Owner, Manager/Agent, Tenant, Vendor/Service Pro)
- Properties and Units (addresses, attributes, market/occupancy status)
- Tenants and Applicants (contacts, application status, screening results)
- Leases (terms, rent schedule, deposits, proration, status)
- Payments (charges, invoices, ACH/card payments, fees, refunds, payout status)
- Maintenance Requests (category, priority, SLA/status, assignments, attachments)
- Documents (leases, addenda, receipts, inspection photos)
The Hemlane Integration Challenge
Property management teams depend on Hemlane daily, but turning portal-first workflows into API-driven automation is non-trivial:
- Role-aware portals: Owners, managers, tenants, and vendors see different data, actions, and approval states
- Financial rigor: Recurring rent, partial payments, late fees, and ACH/card differences require consistent modeling
- Portal-first flows: Applications, screening, lease e-signature, and maintenance coordination are optimized for the UI
- Authentication complexity: SSO/MFA and session lifecycle management complicate headless automation
- Data spread: Key objects span listings/leasing, payments/ledgers, and maintenance with context across multiple views
How Supergood Creates Hemlane APIs
Supergood reverse-engineers authenticated browser flows and network interactions to deliver a resilient API endpoint layer for your Hemlane tenant.
- Handles username/password, SSO/OAuth, and MFA (SMS, email, TOTP) securely
- Maintains session continuity with automated refresh and change detection
- Normalizes responses so you can integrate once and rely on consistent objects across modules
- Aligns with customer entitlements and role-based permissions to ensure compliant access
Use Cases
Rent Roll & Accounting Sync
- Mirror properties, units, tenants, leases, and ledgers into your internal systems
- Keep rent schedules, payments, and fees current for analytics and reporting
- Map charges, methods (ACH/card), and payouts to your accounting schema (e.g., QuickBooks, Xero)
Maintenance Automation
- Ingest new tickets and status changes to drive SLAs and dispatch workflows
- Auto-assign vendors by property, category, or priority and push updates back to Hemlane
- Attach quotes, photos, and invoices; normalize categories and priorities for reporting
Leasing & Tenant Onboarding
- Sync applications and screening outcomes to your CRM or risk engine
- Generate lease records and documents from your product and send for e-signature
- Trigger move-in checklists, deposits, and rent schedule setup from a unified flow
Portfolio Analytics & Alerts
- Build dashboards for occupancy, delinquency, and maintenance backlog
- Trigger notifications on payment failures, lease expirations, or late fees
- Unify multi-portfolio data for centralized reporting and role-based access
Available Endpoints
Authentication
POST /sessions: Establish a session using credentials. Supergood manages MFA (SMS, email, TOTP) and SSO/OAuth when enabled. Returns a short-lived auth token maintained by the platform.
curl --request POST \
--url https://api.supergood.ai/integrations/<integration_id>/sessions \
--header 'Authorization: Basic <Base64 encoded token>' \
--header 'Content-Type: application/json' \
--data '{
"username": "[email protected]",
"password": "<password>",
"mfa": { "type": "totp", "code": "123456" }
}'
Example response
{
"authToken": "eyJhbGciOi...",
"expiresIn": 3600,
"user": {
"id": "u_hmln_4c92f0",
"name": "Portfolio Manager",
"entitlements": ["properties", "tenants", "payments", "maintenance"]
}
}
POST /sessions/refresh: Refresh an existing token to keep sessions uninterrupted.
Properties & Units
GET /properties: List properties with unit summaries and occupancy/marketing status.
Query parameters
- portfolioId: string
- city, region, postalCode: strings
- status: active | archived
- occupancy: occupied | vacant | mixed
- updatedFrom, updatedTo: ISO 8601 timestamps
- includeUnits: boolean (default false)
- page, pageSize: integers for pagination
Example response
{
"items": [
{
"propertyId": "prop_f81c2a",
"name": "Maple Grove Apartments",
"address": {
"line1": "415 Maple Ave",
"city": "Portland",
"region": "OR",
"postalCode": "97214",
"country": "US"
},
"unitCount": 12,
"occupancy": "mixed",
"marketStatus": "partially_marketed",
"ownerId": "own_20b17d",
"updatedAt": "2026-01-20T13:45:00Z",
"units": [
{
"unitId": "unit_2b01",
"label": "Unit 203",
"bedrooms": 2,
"bathrooms": 1,
"sqft": 920,
"rent": 1895.00,
"deposit": 1895.00,
"status": "occupied",
"leaseId": "lease_9d220e"
},
{
"unitId": "unit_2b02",
"label": "Unit 204",
"bedrooms": 1,
"bathrooms": 1,
"sqft": 650,
"rent": 1495.00,
"deposit": 1495.00,
"status": "vacant",
"listingStatus": "published"
}
]
}
],
"page": 1,
"pageSize": 50,
"total": 1
}
Tenants
GET /tenants: List tenants with lease, balance, and contact context.
Query parameters
- propertyId: string
- unitId: string
- leaseStatus: active | notice | ended | pending
- pastDue: boolean
- updatedFrom, updatedTo: ISO 8601 timestamps
- page, pageSize: integers for pagination
Example response
{
"items": [
{
"tenantId": "ten_ba3e91",
"fullName": "Jordan Casey",
"emails": ["[email protected]"],
"phones": ["+15035551234"],
"propertyId": "prop_f81c2a",
"unitId": "unit_2b01",
"leaseId": "lease_9d220e",
"leaseStatus": "active",
"moveInDate": "2025-08-01",
"balance": 245.00,
"nextDueDate": "2026-02-01",
"autopayEnabled": true,
"invitedAt": "2025-07-20T17:11:12Z",
"updatedAt": "2026-01-21T10:03:11Z"
}
],
"page": 1,
"pageSize": 50,
"total": 1
}
Payments
GET /payments: Retrieve payment ledger entries across properties, tenants, and leases.
Query parameters
- propertyId: string
- tenantId: string
- leaseId: string
- status: pending | settled | failed | refunded
- method: ach | card | cash | check
- fromDate, toDate: ISO 8601 dates
- page, pageSize: integers for pagination
Example response
{
"items": [
{
"paymentId": "pay_71c09b",
"tenantId": "ten_ba3e91",
"leaseId": "lease_9d220e",
"propertyId": "prop_f81c2a",
"chargeType": "rent",
"amount": 1895.00,
"processingFees": 0.00,
"netAmount": 1895.00,
"method": "ach",
"status": "settled",
"createdAt": "2026-01-02T09:12:45Z",
"settledAt": "2026-01-04T03:00:00Z",
"externalReference": "ach_1JkA9K"
},
{
"paymentId": "pay_71c11d",
"tenantId": "ten_ba3e91",
"leaseId": "lease_9d220e",
"propertyId": "prop_f81c2a",
"chargeType": "late_fee",
"amount": 50.00,
"processingFees": 0.00,
"netAmount": 50.00,
"method": "ledger",
"status": "posted",
"createdAt": "2026-01-06T08:00:00Z",
"settledAt": null,
"externalReference": null
}
],
"page": 1,
"pageSize": 50,
"total": 2
}
Maintenance Requests
POST /maintenance-requests: Create a maintenance request with category, priority, and optional vendor assignment.
curl --request POST \
--url https://api.supergood.ai/integrations/<integration_id>/maintenance-requests \
--header 'Authorization: Bearer <authToken>' \
--header 'Content-Type: application/json' \
--data '{
"propertyId": "prop_f81c2a",
"unitId": "unit_2b01",
"title": "Leaking kitchen faucet",
"description": "Slow drip from base of faucet, worsening over a week.",
"category": "plumbing",
"priority": "high",
"accessPermission": "enter_with_key",
"preferredTimes": [
{"date": "2026-01-25", "window": "09:00-12:00"}
],
"attachments": [
{"fileName": "leak_photo.jpg", "uploadToken": "upl_08ab73"}
],
"assignVendorId": "ven_41a222",
"notifyTenant": true,
"referenceId": "zendesk-12881"
}'
Example response
{
"requestId": "mnt_90e412",
"number": "MR-2026-0142",
"status": "open",
"createdAt": "2026-01-21T11:20:44Z"
}
Technical Specifications
- Authentication: Username/password with MFA (SMS, email, TOTP) and SSO/OAuth where enabled; supports service accounts or customer-managed credentials
- Response format: JSON with consistent resource schemas and pagination across modules
- Rate limits: Tuned for portfolio-scale sync while honoring customer entitlements and usage controls
- Session management: Automatic reauth and cookie/session rotation with health checks
- Data freshness: Near real-time retrieval of properties, tenants, leases, payments, and maintenance objects
- Security: Encrypted transport, scoped tokens, and audit logging; respects Hemlane role-based permissions
- Webhooks: Optional asynchronous delivery for long-running workflows (e.g., payment settlement, maintenance status changes)
Performance Characteristics
- Latency: Sub-second responses for list/detail queries under normal load
- Throughput: Designed for high-volume rent roll sync and maintenance processing
- Reliability: Retry logic, backoff, and idempotency keys minimize duplicate actions
- Adaptation: Continuous monitoring for UI/API changes with rapid adapter updates
Getting Started
- Schedule Integration Assessment
Book a 30-minute session to confirm your modules, licensing, and authentication model.
- Supergood Builds and Validates Your API
We deliver a hardened Hemlane adapter tailored to your workflows and entitlements.
- Deploy with Monitoring
Go live with continuous monitoring and automatic adjustments as Hemlane evolves.
Frequently Asked Questions
Q: Which Hemlane modules can this integration cover?
Supergood supports workflows across commonly used modules such as Leasing (Listings, Applications), Tenant/Lease Management, Rent Collection (charges, payments, payouts), and Maintenance (tickets, vendor assignments), subject to your licensing and entitlements. We scope coverage during integration assessment.
Q: How are MFA and SSO handled for automation?
We support username/password + MFA (SMS, email, TOTP) and can operate behind SSO/OAuth when enabled. Sessions are refreshed automatically with secure challenge handling.
Q: Can you sync payments and fees to our accounting system?
Yes. We can normalize rent, fees, methods (ACH/card), and payout states to match your accounting schema and deliver updates via webhooks or polling while complying with rate and permission constraints. We commonly integrate with QuickBooks and Xero.
Q: Do you support maintenance attachments and vendor notifications?
Yes. We support uploading attachments via signed uploads with checksum validation, returning time-limited URLs. Vendor assignments, status changes, and tenant notifications are modeled explicitly in our normalized responses.
Related Integrations
Buildium API - Programmatically access Buildium with Supergood
Ready to automate your Hemlane workflows?
Supergood can have your Hemlane integration live in days with no ongoing engineering maintenance.