============================================ 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 .. code-block:: javascript { "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" } .. _Review: ./../models.html#review .. _Error: ./../models.html#error