Skip to main content

RentalBatchRequest

Async batch valuation request for rental properties. Used by: POST /v1/avm/batch/rental

notify_urlNotify Url (string)nullable

Optional webhook URL. When the job completes the server will POST the full results payload to this URL. Must be publicly reachable. If delivery fails it is retried up to 3 times with exponential backoff.

properties object[]required

List of properties to value (max 500 per job)

Possible values: >= 1, <= 500

  • Array [
  • property_idProperty Id (string)nullable

    Client-provided reference ID — echoed back in results for correlation

    location objectrequired

    Location input for AVM requests. Provide either address OR latitude + longitude.

    Used by all AVM endpoints (property, rental, multifamily) in both single and batch modes.

    addressAddress (string)nullable

    Full street address

    latitudeLatitude (number)nullable

    Latitude

    Possible values: >= -90 and <= 90

    longitudeLongitude (number)nullable

    Longitude

    Possible values: >= -180 and <= 180

    maps_api_response objectnullable

    Pre-fetched Maps API response

    property name*anynullable

    Pre-fetched Maps API response

    search_params object

    Common search parameters for AVM requests. All fields are optional with sensible defaults.

    Used by all AVM endpoints (property, rental, multifamily) in both single and batch modes.

    radius_miRadius Mi (number)

    Search radius in miles

    Possible values: >= 0.1 and <= 10

    Default value: 5
    lookback_monthsLookback Months (integer)nullable

    Months to look back

    Possible values: >= 1 and <= 36

    dateDate (string)nullable

    As-of date (YYYY-MM-DD)

    num_compsNum Comps (integer)

    Number of comparables to return (0 = subject-only, skips DB query)

    Possible values: >= 0 and <= 20

    Default value: 0
    property_fields objectrequired
    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

  • ]
  • RentalBatchRequest
    {
    "notify_url": "string",
    "properties": [
    {
    "property_id": "string",
    "location": {
    "address": "123 Main St, Austin, TX 78701"
    },
    "search_params": {
    "radius_mi": 5,
    "lookback_months": 12,
    "num_comps": 5
    },
    "property_fields": {
    "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
    }
    }
    ]
    }