Renewal Summary
NewBetaRenewalSummary objects represent rows from the AppFolio® Renewal Summary report. Each row is a single lease whose new start date falls inside the report window, with previous vs. new rent, the dollar/percent change, term, and current renewal status.
The RenewalSummary Object
Attributes
456
"Sample Property"
1085
"108"
3461
"Brown, Whitney N."
"04/07/2026"
"06/06/2027"
"01/07/2025"
"04/06/2026"
"1,200.00"
"1,363.00"
"163.00"
"13.58"
"Renewed"
"14 months"
{
"property": {
"appfolioId": 456,
"name": "Sample Property"
},
"unit": {
"appfolioId": 1085,
"name": "108"
},
"tenant": {
"appfolioId": 3461,
"name": "Brown, Whitney N."
},
"leaseStart": "04/07/2026",
"leaseEnd": "06/06/2027",
"previousLeaseStart": "01/07/2025",
"previousLeaseEnd": "04/06/2026",
"previousRent": "1,200.00",
"rent": "1,363.00",
"dollarDifference": "163.00",
"percentDifference": "13.58",
"status": "Renewed",
"term": "14 months"
}
Get Renewal Summary
GET /v1/renewal-summary
Follows: Authentication • Caching • Polling • List Response Format • Scheduled Job
The renewal-summary endpoint returns the Renewal Summary report for your AppFolio® portfolio. Each row represents a single lease whose new start date falls inside the report window, with previous vs. new rent, dollar and percent change, term length, and current renewal status. The window defaults to this and the next six months; pass dateFrom / dateTo (MM/YYYY) for a custom range or dateRange for a relative preset. Filter by renewal state with the status parameter (All, Renewed, Not Renewed, Month To Month, Pending, Canceled By User).
Parameters
Returns
The standard List Response Format with a data property containing an array of RenewalSummary objects.
curl -X GET 'https://api.skywalkapi.com/v1/renewal-summary' \
-H "X-API-Key: PUT_YOUR_API_KEY_HERE"
{
"meta": {
"status": "ok",
"path": "/v1/renewal-summary",
"query": {},
"count": 1,
"lastUpdated": 1776988800
},
"links": {
"next": "/v1/renewal-summary?cursor=abcdefg"
},
"data": [
{
"property": {
"appfolioId": 456,
"name": "Sample Property"
},
"unit": {
"appfolioId": 1085,
"name": "108"
},
"tenant": {
"appfolioId": 3461,
"name": "Brown, Whitney N."
},
"leaseStart": "04/07/2026",
"leaseEnd": "06/06/2027",
"previousLeaseStart": "01/07/2025",
"previousLeaseEnd": "04/06/2026",
"previousRent": "1,200.00",
"rent": "1,363.00",
"dollarDifference": "163.00",
"percentDifference": "13.58",
"status": "Renewed",
"term": "14 months"
}
]
}