List Rizerve Properties
rizerve_list_propertiesRetrieve a paginated list of your properties with full details including pricing, amenities, and availability. Filter by published status and choose markdown or JSON output.
Instructions
List all properties owned by the authenticated account.
This tool returns properties with full details including pricing (in cents), amenities, availability settings, and branding configuration.
Args:
page (number): Page number, 1-based (default: 1)
limit (number): Items per page, max 100 (default: 20)
published_only (boolean): Filter to published only (default: false)
response_format ('markdown' | 'json'): Output format (default: 'markdown')
Returns: For JSON format: Paginated response with { data: Property[], meta: { total, page, limit } } For markdown format: Formatted list with property details
Examples:
"Show all my properties" → rizerve_list_properties()
"Show published properties" → rizerve_list_properties({ published_only: true })
"Get properties as JSON" → rizerve_list_properties({ response_format: 'json' })
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| page | No | Page number (1-based) | |
| limit | No | Items per page (max 100) | |
| published_only | No | Filter to published properties only | |
| response_format | No | Output format: 'markdown' for human-readable or 'json' for machine-readable | markdown |