Retrieve a single property by its ID.
cURL
curl --request GET \ --url https://api.trellistech.com/v1/properties/{property_id} \ --header 'Authorization: Bearer <token>'
{ "id": "<string>", "name": "<string>", "address": "<string>", "city": "<string>", "country": "<string>", "bedrooms": 123, "bathrooms": 123, "max_guests": 123, "status": "<string>", "amenities": [ { "id": "<string>", "name": "<string>", "category": "<string>" } ], "media": [ { "id": "<string>", "url": "<string>", "type": "<string>", "caption": "<string>" } ], "custom_fields": {}, "created_at": "<string>", "updated_at": "<string>" }
curl -H "Authorization: Bearer trls_live_abc123..." \ "https://api.trellistech.com/v1/properties/a1b2c3d4-5678-9abc-def0-123456789abc"
Show Amenity object
Show Media object
photo
video
{ "id": "a1b2c3d4-5678-9abc-def0-123456789abc", "name": "Sunset Villa", "address": "123 Ocean Drive", "city": "Miami Beach", "country": "US", "bedrooms": 3, "bathrooms": 2.5, "max_guests": 8, "status": "ACTIVE", "amenities": [ { "id": "am-001", "name": "Pool", "category": "outdoor" }, { "id": "am-002", "name": "WiFi", "category": "essentials" }, { "id": "am-003", "name": "Air Conditioning", "category": "essentials" } ], "media": [ { "id": "med-001", "url": "https://cdn.trellistech.com/properties/sunset-villa/exterior.jpg", "type": "photo", "caption": "Front view of the villa" } ], "custom_fields": { "cleaning_fee": 150, "pet_policy": "Dogs allowed under 30 lbs" }, "created_at": "2025-06-15T10:30:00Z", "updated_at": "2026-03-20T14:45:00Z" }
{ "error": { "code": "not_found", "message": "No property found with the specified ID." } }
{ "error": { "code": "unauthorized", "message": "Invalid or missing API key." } }
Was this page helpful?