List Rizerve Bookings
rizerve_list_bookingsRetrieve and filter bookings across properties by status, property, or date range. Get paginated results with guest details and pricing.
Instructions
List bookings across all properties with optional filters.
Supports filtering by status, property, and date range. Results are paginated.
Args:
page (number): Page number (default: 1)
limit (number): Items per page, max 100 (default: 20)
status (string): Filter by status: pending, confirmed, cancelled, completed
property_slug (string): Filter by property slug
check_in_from (date): Show bookings from this date (YYYY-MM-DD)
check_in_to (date): Show bookings up to this date (YYYY-MM-DD)
response_format ('markdown' | 'json'): Output format (default: 'markdown')
Returns: Paginated booking list with full guest details, pricing, and status.
Examples:
"Show all confirmed bookings" → rizerve_list_bookings({ status: "confirmed" })
"What bookings check in this week?" → rizerve_list_bookings({ check_in_from: "2026-06-27", check_in_to: "2026-07-04" })
"Show pending bookings for the villa" → rizerve_list_bookings({ property_slug: "beachfront-villa", status: "pending" })
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| page | No | Page number (1-based) | |
| limit | No | Items per page (max 100) | |
| status | No | Filter by booking status | |
| check_in_to | No | Filter bookings checking in on or before this date (YYYY-MM-DD) | |
| check_in_from | No | Filter bookings checking in on or after this date (YYYY-MM-DD) | |
| property_slug | No | Filter by property slug | |
| response_format | No | Output format: 'markdown' for human-readable or 'json' for machine-readable | markdown |