v1

latestOpenAPI 3.1.0Apache 2.02026-07-1336147941.0 KB
rentalizer_data

Bulk: Request Summarized Performance Estimates for Multiple Addresses or Locations.

If you are looking for summarized Rentalizer performance estimates, you can request summaries for up to 25 addresses or locations in a single request.

Each 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/bulk_summary

Request body

Example request

{
  "queries": [
    {
      "address": "1321 15th St. Denver, CO 80202",
      "bedrooms": 3,
      "bathrooms": 3.5,
      "accommodates": 6,
      "currency": "usd"
    }
  ]
}

Response

Successful Rentalizer Bulk Summary Response

Example response

{
  "payload": {
    "results": [
      {
        "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
            }
          }
        }
      }
    ],
    "failed": []
  },
  "status": {
    "type": "success",
    "response_id": "API-S-XXX",
    "message": "A successful request was made."
  }
}