Get Occupancy Report
rizerve_get_occupancy_reportRetrieve occupancy rates across properties for a specified time period, with optional filter by property slug. Output as markdown or JSON.
Instructions
Get occupancy rates across properties.
Args:
period (string): Time period - "30d", "90d", "365d" (default: "30d")
property_slug (string): Filter to single property (omit for all)
response_format ('markdown' | 'json'): Output format (default: 'markdown')
Returns: Overall occupancy rate with per-property breakdown.
Examples:
"What's our occupancy this month?" → rizerve_get_occupancy_report({ period: "30d" })
"Occupancy for just the villa" → rizerve_get_occupancy_report({ property_slug: "beachfront-villa" })
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| period | No | Time period: "7d", "30d", "90d", "365d", or date range "YYYY-MM-DD/YYYY-MM-DD" | 30d |
| property_slug | No | Filter to single property by slug (omit for all properties) | |
| response_format | No | Output format: 'markdown' for human-readable or 'json' for machine-readable | markdown |