Check Property Availability
rizerve_get_availabilityCheck property availability over a date range. Get available and blocked dates with reasons and overall availability status.
Instructions
Check availability for a property over a date range.
Returns available/blocked dates with reasons. Also returns overall availability status (true/false) for the entire range.
Args:
slug (string): Property public slug
check_in (date): Start date YYYY-MM-DD (required)
check_out (date): End date YYYY-MM-DD (required)
response_format ('markdown' | 'json'): Output format (default: 'markdown')
Returns: Availability data with total_nights, available_nights, blocked_dates, and overall available flag.
Examples:
"Is the villa available July 5-10?" → rizerve_get_availability({ slug: "beachfront-villa", check_in: "2026-07-05", check_out: "2026-07-10" })
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| slug | Yes | Property public slug (e.g. "beachfront-villa") | |
| check_in | Yes | Start date (YYYY-MM-DD) | |
| check_out | Yes | End date (YYYY-MM-DD) | |
| response_format | No | Output format: 'markdown' for human-readable or 'json' for machine-readable | markdown |