Get Property Statistics
rizerve_get_property_statsRetrieve detailed statistics for a property, including page views, bookings, revenue, and occupancy rate, for any period or date range.
Instructions
Get detailed statistics for a single property.
Includes page views, bookings, conversion rate, revenue, average stay length, and occupancy rate.
Args:
slug (string): Property public slug
period (string): Time period - "7d", "30d", "90d", "365d", or "YYYY-MM-DD/YYYY-MM-DD" (default: "30d")
response_format ('markdown' | 'json'): Output format (default: 'markdown')
Returns: Property stats object with all metrics.
Examples:
"How's the villa doing this month?" → rizerve_get_property_stats({ slug: "beachfront-villa", period: "30d" })
"Show me villa stats for all of 2026" → rizerve_get_property_stats({ slug: "beachfront-villa", period: "2026-01-01/2026-12-31" })
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| slug | Yes | Property public slug (e.g. "beachfront-villa") | |
| period | No | Time period: "7d", "30d", "90d", "365d", or date range "YYYY-MM-DD/YYYY-MM-DD" | 30d |
| response_format | No | Output format: 'markdown' for human-readable or 'json' for machine-readable | markdown |