GET /v2/customerReview/{id}/reviews

Returns the published reviews attached to a single lodging. Capped at 10 results, ordered by review date (most-recent first). Body response contains data in the JSON or XML format.

Resource information

Authentication Yes
Response Formats xml, json
HTTP Method GET
Response Object List of customer review objects (max 10)
API Version v2

Path parameters

NameTypeDescription
id long Lodging id.

Example Request

https://api.poplidays.com/v2/customerReview/1012345678901/reviews

Example Response

json response body

[
    {
        "score": 9,
        "title": "Excellent stay",
        "body": "Beautiful location, very clean apartment, friendly host.",
        "author": "John D.",
        "lang": "en",
        "propertyId": 1012345678901,
        "city": "Cannes",
        "labelPropertyType": "Apartment",
        "photoId": 88123456,
        "reviewDate": "2026-03-12T14:22:31+0100",
        "discussion": []
    }
]