Method to retrieve cumulative statistics for requests, bookings & allotment per day
GET /statistics/performance_per_day/{propertycode}
This method is only accessible using a Hotelier or Operator API account.
| NAME | TYPE | RANGE / SET | REQUIRED | DEFAULT | EXAMPLE | NOTES |
|---|---|---|---|---|---|---|
| from | date (ISO 8601) | * | YES | – | &from=2025-11-04 | |
| to | date (ISO 8601) | from + 12 months | YES | – | &to=2025-12-04 |
{
"method": "https://rest.reserve-online.net/statistics/performance_per_day/DEMO"
"http_method": "GET",
"http_code": 200,
"error_code": "OK",
"error_msg": "",
"params": [
{
type: "URL"
name: "from"
value: "2025-11-04"
},
{
type: "URL"
name: "to"
value: "2025-12-04"
}
],
"data":{
"stats":[
{
"date":ISO 8601, // Date
"requests":INTEGER, // Total count of requests that stay period incuded this date
"allotment":INTEGER, // Total count of currently available rooms
"bookings":INTEGER // Total count of bookings that their stay period includes this date
}
]
}
}