rentalizer_summary_data
Request a Summarized Performance Estimate for an Address or Location.
If you are looking for a summarized Rentalizer performance estimate, you can request a summary for an address or location.
The requested address or location will receive the following data points:
- Average Daily Rate (based on next 12 months)
- Total Revenue (based on next 12 months)
- Occupancy (based on next 12 months)
⚠️ Updated Comps Methodology
The Rentalizer endpoints now use an updated comps methodology that matches the values shown in the AirDNA Rentalizer app. The response shape and field names are unchanged from prior versions — only the underlying comps selection and revenue projection logic have been updated. Customers should expect slightly different numeric values for the same address compared to historical responses.
post/rentalizer/summary/individual
Request body
Example request
{
"address": "1321 15th St. Denver, CO 80202",
"bedrooms": 3,
"bathrooms": 3.5,
"accommodates": 6,
"currency": "usd"
}Response
Successful Individual Rentalizer Summary Response
Example response
{
"payload": {
"details": {
"address": "1321 15th St. Denver, CO 80202",
"address_lookup": "1321 15 ST, DENVER, CO 80202",
"zipcode": "80202",
"accommodates": 6,
"bedrooms": 3,
"bathrooms": 3.5
},
"location": {
"lat": 39.748847,
"lng": -104.99891
},
"stats": {
"currency": "usd",
"currency_symbol": "$",
"property_value": 1744213,
"future": {
"summary": {
"adr": 299,
"occupancy": 0.66,
"revenue": 71571
}
}
}
},
"status": {
"type": "success",
"response_id": "API-S-XXX",
"message": "A successful request was made."
}
}