GET /:country/listings/:id/reviews/:reviewId

Returns a single review.

Response

On success returns HTTP 200 OK with a Review model in the message body.

On error returns an Error object.

Examples

GET https://api.opendi.com/de/listings/123555/reviews/561

200 OK

{
    "id": "561",
    "source_id": "11031",
    "reviewer": "The Dude",
    "reviewed": "",
    "title": "This is the title",
    "text": "And the complete text of the review goes here.",
    "rating": 5,
    "date_time": "2009-09-22T09:01:25+01:00"
}