Get Property Details API
Retrieve detailed information about a specific property by its ID.
Endpoint
GET /properties/:id
Authentication
Required. All API requests must be authenticated using your API key. See the Authentication section in the API Overview documentation.
Path Parameters
Parameter Type Required Description id string (UUID) Yes The unique identifier of the property
Query Parameters
Parameter Type Description Default filterByOrganization boolean Only return if property belongs to your organization false includeBranding boolean Include organization branding information false includeAdCount boolean Include count of active ads for the property false includeAdCreatives boolean Include ad creative details (max 3 most recent) false
Response
Success Response (200 OK)
Returns a single property object with all details:
Error Responses
404 Not Found
When using filterByOrganization=true:
401 Unauthorized
400 Bad Request
Example Requests
Basic Request
With All Optional Data
Check Property Ownership
Code Examples
JavaScript/TypeScript
Python
PHP
Use Cases
1. Property Detail Page
Display comprehensive property information on a dedicated page:
2. Property Verification
Check if a property belongs to your organization:
3. Property Comparison
Fetch multiple properties for side-by-side comparison:
Tips and Best Practices
-
Error Handling: Always handle 404 errors gracefully - properties may be deleted or become inactive
-
Optional Data: Only request
includeBrandingandincludeAdCreativeswhen you need them to minimize response size -
Caching: Consider caching property details on your frontend to reduce API calls
-
Deep Linking: Property IDs can be used in URLs for direct deep linking to property pages
-
Organization Filtering: Use
filterByOrganization=truewhen you need to verify ownership before allowing edits -
Image Display:
-
Use
imagesarray for full-size images in galleries -
Use
thumbnailsarray for preview/listing views -
The
isFeaturedflag indicates the hero image
-
-
Agent Information: Agent data is automatically included when available and either
includeAdCountorincludeAdCreativesis true