Method to retrieve confirmed bookings, cancelled bookings & revenue of a property, within a specified period of time.
GET /statistics/performance_summary/{propertycode}
This method is only accessible using a Hotelier or Operator API account.
NAME | TYPE | RANGE / SET | REQUIRED | DEFAULT | EXAMPLE | NOTES |
---|---|---|---|---|---|---|
book_from | date (ISO 8601) | * | YES | – | &book_from=2025-07-11 | |
book_to | date (ISO 8601) | from + 12 months | YES | – | &book_to=2025-08-11 | |
source_id | integer | * | NO | – |
{ "method": "https://rest.reserve-online.net/statistics/performance_summary/DEMO" "http_method": "GET", "http_code": 200, "error_code": "OK", "error_msg": "", "params": [ { type: "URL" name: "book_from" value: "2025-06-01" }, { type: "URL" name: "book_to" value: "2025-06-30" } ], "data":{ "summary":[ { "confirmed_bookings":INTEGER, // Total count of confirmed bookings where the booking date falls within the specified dates "revenue":BIGDECIMAL, // Total revenue from confirmed bookings where the booking date falls within the specified dates "cancelled":INTEGER, // Total count of cancelled bookings where the booking date falls within the specified dates } ] } }