v6
OpenAPI 3.1.02026-08-0331136162.2 KBProperties v2
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.
get/v2/properties/{property_id}
Path parameters
property_idstring required
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",
"buildings": [
{
"id": "501",
"name": "Tower A",
"address": {
"street_address": "125 Main Street",
"city": "San Francisco",
"state": "CA",
"postal_code": "94105",
"country": "US"
}
}
]
}