Units Overview
The Units API provides endpoints for managing and interacting with individual rental units within properties.
Key Concepts
Unit Status
Units can be in various states throughout their lifecycle:
VACANT_READYVACANT_NOT_READYOCCUPIED_ON_NTVOCCUPIED_NO_NOTICEDOWNPROPERTY_MODELPROPERTY_OFFICENON_PRODUCTIVE
Unit Address
Each unit exposes its physical address, both as individual components and as a single pre-formatted string:
streetAddress1— Primary street address line (street number and name)streetAddress2— Secondary line (apartment, suite, or building number)city— City in which the unit is locatedstate— State or provincezipCode— Postal / ZIP codefullAddress— Human-readable address composed from the components above, joined with commas. Blank components are omitted (e.g. a missingstreetAddress2is skipped), and the field isnullwhen the unit has no address information at all.
Unit Availability
Available by RequestThe /properties/{propertyId}/availableUnits endpoint lists the units that are
currently available for a property, including quoting rent, availability
dates, amenities, and floor plan details. The response is wrapped in an
envelope with two top-level fields:
meta— summary information about the result set, includingapplyNowEnabled,propertyType, and the totalcountof available units.data— the array of available units.
This endpoint always returns the complete set of currently available units for the requested property. Filtering, sorting, field selection, and pagination are not supported.
This endpoint is part of our evolving API ecosystem. To explore availability for your integration, please contact our team.

