v1

latestOpenAPI 3.1.0Apache 2.02026-07-1336147941.0 KB
rentalizer_data

Individual: Request a Detailed Performance Estimate for an Address or Location.

You can request a detailed Rentalizer performance estimate for a property (by address) or location (by lat + lng).

This detailed Rentalizer performance estimate will provide:

  • High-level summaries for future and historical performance estimates.
  • 12 months of monthly future performance estimates for rates, revenue and occupancy.
  • 12 months of monthly historical performance estimates for annual revenue valuation.
  • Up to 10 comps, each with up 12 months of monthly historical performance data for rates, revenue, revenue potential and occupancy.

⚠️ 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/estimate

Request body

OR

Example request

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

Response

Successful Rentalizer Estimate 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": 1234567,
      "future": {
        "summary": {
          "occupancy": 0.84,
          "adr": 436.45,
          "revenue": 11040,
          "revenue_lower": 10770,
          "revenue_upper": 11309
        },
        "metrics": [
          {
            "date": "2024-01",
            "occupancy": 0.84,
            "adr": 436.45,
            "revenue": 11040,
            "revenue_lower": 10770,
            "revenue_upper": 11309
          }
        ]
      },
      "historical": {
        "summary": {
          "revenue_valuation": {
            "monthly_pct_change": -2.75,
            "yearly_pct_change": -2.62
          }
        },
        "metrics": [
          {
            "date": "2021-11",
            "revenue_valuation": 187589
          }
        ]
      }
    },
    "comps": [
      {
        "property_id": "abnb_xxxxxxxx",
        "details": {
          "title": "Downtown House w/ Private yard, Garage, 3 bathroom",
          "accommodates": 7,
          "bedrooms": 3,
          "bathrooms": 3,
          "reviews": 83,
          "rating": 4.9,
          "images": [
            "//sample.jpeg"
          ],
          "property_type": "Home"
        },
        "location": {
          "lat": 39.748847,
          "lng": -104.99891
        },
        "distance_meters": 1140,
        "platforms": {
          "airbnb_property_id": "12345678",
          "airbnb_property_url": "https://www.airbnb.com/rooms/12345678",
          "vrbo_property_id": "34567890ha",
          "vrbo_property_url": "https://www.vrbo.com/34567890ha",
          "booking_property_id": "1234567",
          "booking_property_url": "https://www.booking.com/hotel/us/example.html"
        },
        "stats": {
          "summary": {
            "occupancy": 0.71,
            "days_available": 364,
            "days_reserved": 257,
            "adr": 272,
            "revenue": 69918,
            "revenue_potential": 70024
          },
          "metrics": [
            {
              "date": "2022-11",
              "occupancy": 0.71,
              "days_available": 364,
              "days_reserved": 257,
              "adr": 272,
              "revenue": 69918,
              "revenue_potential": 70024
            }
          ]
        }
      }
    ]
  },
  "status": {
    "type": "success",
    "response_id": "API-S-XXX",
    "message": "A successful request was made."
  }
}