Method to retrieve cumulative statistics for requests & bookings per user country
GET /statistics/performance_per_country/{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-09-30 | |
| to | date (ISO 8601) | from + 12 months | YES | – | &to=2025-10-30 |
{
"method": "https://rest.reserve-online.net/statistics/performance_per_country/DEMO"
"http_method": "GET",
"http_code": 200,
"error_code": "OK",
"error_msg": "",
"params": [
{
type: "URL"
name: "from"
value: "2025-09-30"
},
{
type: "URL"
name: "to"
value: "2025-10-30"
}
],
"data":{
"stats":[
{
"country":ISO 3166-1-alpha-2,
"country_name":STRING, // Country name
"requests":INTEGER, // Total count of requests made by users from this country
"room_nights":INTEGER, // Total count of requested nights by users from this country
"avg_nights":FLOAT, // Average requested nights (room_nights / requests)
"avg_lead":FLOAT, // Average days between request date and check-in date
"booked_room_nights":INTEGER // Total count of nights from all bookings by users from this country
}
]
}
}