Leasing Summary
NewBetaLeasingSummary objects represent rows from the AppFolio® Leasing Summary report. Each row aggregates per-unit-type counts for inquiries, showings, applications, move-ins, move-outs, and leases executed over the selected report period. Portfolio-level totals are exposed in meta.summary.
The LeasingSummary Object
Attributes
"The Kokomo | 2B"
11
0
0
0
0
1
0
0
{
"unitType": "The Kokomo | 2B",
"unitCount": 11,
"modelUnitCount": 0,
"inquiriesReceived": 0,
"showingsCompleted": 0,
"applicationsReceived": 0,
"moveIns": 1,
"moveOuts": 0,
"leased": 0
}
Get Leasing Summary
GET /v1/leasing-summary
Follows: Authentication • Caching • Polling • List Response Format • Scheduled Job
The leasing-summary endpoint returns the Leasing Summary report for your AppFolio® portfolio. Each row aggregates per-unit-type counts of inquiries, showings, applications, move-ins, move-outs, and leases executed for the requested period. Portfolio-level totals (across every row in the response) are exposed in meta.summary. Use dateFrom / dateTo (MM/YYYY) for a custom window, or pass dateRange for a relative preset such as this-month-to-day.
Parameters
Returns
The standard List Response Format with a data property containing an array of LeasingSummary objects.
curl -X GET 'https://api.skywalkapi.com/v1/leasing-summary?dateFrom=04/01/2026&dateTo=04/30/2026' \
-H "X-API-Key: PUT_YOUR_API_KEY_HERE"
{
"meta": {
"status": "ok",
"path": "/v1/leasing-summary",
"query": {
"dateFrom": "04/01/2026",
"dateTo": "04/30/2026"
},
"count": 2,
"lastUpdated": 1776988800,
"summary": {
"unitCount": 19,
"modelUnitCount": 0,
"inquiriesReceived": 3,
"showingsCompleted": 0,
"applicationsReceived": 3,
"moveIns": 2,
"moveOuts": 1,
"leased": 2
}
},
"links": {
"next": "/v1/leasing-summary?cursor=abcdefg"
},
"data": [
{
"unitType": "The Kokomo | 2B",
"unitCount": 11,
"modelUnitCount": 0,
"inquiriesReceived": 0,
"showingsCompleted": 0,
"applicationsReceived": 0,
"moveIns": 1,
"moveOuts": 0,
"leased": 0
},
{
"unitType": "The Kokomo | 1B",
"unitCount": 8,
"modelUnitCount": 0,
"inquiriesReceived": 3,
"showingsCompleted": 0,
"applicationsReceived": 3,
"moveIns": 1,
"moveOuts": 1,
"leased": 2
}
]
}