Skip to main content

RentalAVMFields

Rental-specific AVM fields.

Used by: POST /v1/avm/rental, GET /v1/avm/rental, POST /v1/avm/batch/rental

units object[]required

List of rental units

Possible values: >= 1

  • Array [
  • bedroomsBedrooms (integer)required

    Bedrooms in unit

    Possible values: >= 0 and <= 10

    bathroomsBathrooms (number)required

    Bathrooms in unit

    Possible values: >= 0 and <= 10

    sizeSize (integer)nullable

    Unit size in sqft

    Possible values: >= 0

    is_furnishedIs Furnished (boolean)nullable

    Is furnished. Defaults to false if omitted.

  • ]
  • property_typeProperty Type (string)nullable

    Property type (houses, townhomes, condos, small_multifamily, multifamily)

    total_unitsTotal Units (integer)nullable

    Total units in the building (not units being valued). Defaults to 2 for small_multifamily, 1 for houses/condos/townhomes.

    Possible values: >= 1

    conditionCondition (number)nullable

    Condition (0-5). 1=poor, 2=fair, 3=average, 4=good, 5=excellent.

    Possible values: >= 0 and <= 5

    has_central_airHas Central Air (boolean)nullable

    Has central air

    has_laundryHas Laundry (boolean)nullable

    Has in-unit laundry

    has_parkingHas Parking (boolean)nullable

    Has off-street parking

    RentalAVMFields
    {
    "units": [
    {
    "bedrooms": 0,
    "bathrooms": 0,
    "size": 0,
    "is_furnished": true
    }
    ],
    "property_type": "string",
    "total_units": 0,
    "condition": 0,
    "has_central_air": true,
    "has_laundry": true,
    "has_parking": true
    }