Retrieve a property
Retrieves comprehensive details for a specific property.
Returns full property information including address, property type, status, total units, and external system identifiers. Use this to get complete property context before making other API calls.
Property IDs: Property IDs are permanent and unique across the system. Use the same ID format returned from the list properties endpoint.
Path parameters
The property ID
The property ID
Response
Successful Response
Example response
{
"id": "12345",
"name": "Sunrise Apartments",
"property_type": "multi_family",
"status": "active",
"address": {
"street_address": "123 Main Street",
"city": "San Francisco",
"state": "CA",
"postal_code": "94105",
"country": "US"
},
"total_units": 250,
"external_ids": [
{
"source": "YardiVoyager",
"id_type": "property",
"external_id": "12345"
}
],
"organization_id": "6789",
"organization_name": "Sunrise Residential",
"has_phases": true,
"entities": [
{
"id": "018e2b7e-becf-7000-8000-00000000000f",
"name": "Sunrise Apartments",
"type": "PROPERTY",
"building_ids": []
},
{
"id": "018e2b7e-becf-7000-8000-00000000000a",
"name": "Phase A",
"type": "SUB_PROPERTY",
"building_ids": [
"501"
]
}
],
"buildings": [
{
"id": "501",
"name": "Tower A",
"address": {
"street_address": "125 Main Street",
"city": "San Francisco",
"state": "CA",
"postal_code": "94105",
"country": "US"
}
}
]
}Changes
Changed in 2 of the 25 revisions of this API.4
- ○
added the optional property
organization_nameto the response with the200statusresponse-optional-property-added
This revision also has 1 change that name no endpoint, such as unreferenced schemas being removed. See the revision's changelog
- ○
- ○
added the non-success response with the status
503response-non-success-status-added
- ○
added the optional property
entitiesto the response with the200statusresponse-optional-property-added
- ○
added the optional property
has_phasesto the response with the200statusresponse-optional-property-added
This revision also has 1 change that name no endpoint, such as unreferenced schemas being removed. See the revision's changelog
- ○