Daily E-reputation Rating

This API is a robust tool designed to retrieve the daily ratings of a hotel from various e-reputation platforms.

This API aggregates critical rating information for each requested day, providing detailed insights into guest feedback and overall hotel performance across different review sites.

By making use of this data, hotels can gain a comprehensive view of their online reputation, analyze trends over time, understand guest satisfaction levels, and strategize on ways to enhance their service quality and online presence.

Request

POST

https://interface.experience-hotel.com/api/xp-ereputation-ratings

Params must be sent as form-data

Param
Format
Required

date_start

YYYY-MM-DD

Required

date_end

YYYY-MM-DD

Required

Response

Status Code 200 OK

JSON
[
    {
        "business_id": 1234,
        "business_name": "Hotel Test",
        "date": "2024-02-29",
        "source": "google",
        "rating": 4.6,
        "rating_max": 5,
        "rating_normalized": 92,
        "rating_count": 498,
        "bubble_rating": null,
        "position": null,
        "position_out_of": null
    },
    {
        "business_id": 1234,
        "business_name": "Hotel Test",
        "date": "2024-02-29",
        "source": "travelocity",
        "rating": 4.6,
        "rating_max": 5,
        "rating_normalized": 92,
        "rating_count": null,
        "bubble_rating": null,
        "position": null,
        "position_out_of": null
    }
]

Last updated