Get Rizerve Property
rizerve_get_propertyRetrieve full details of a property using its public slug. Ideal for displaying specific property information.
Instructions
Get a single property by its public slug.
Args:
slug (string): Property public slug (e.g. "beachfront-villa")
response_format ('markdown' | 'json'): Output format (default: 'markdown')
Returns: Full property object with all details.
Examples:
"Show me the beachfront villa property" → rizerve_get_property({ slug: "beachfront-villa" })
Error Handling:
Returns "Property with slug 'X' not found" if the slug doesn't exist. Use rizerve_list_properties to see available slugs.
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| slug | Yes | Property public slug (e.g. "beachfront-villa") | |
| response_format | No | Output format: 'markdown' for human-readable or 'json' for machine-readable | markdown |