Place Reviews

Description: Shows user reviews and ratings for locations, businesses, or attractions.

API Response Structure:

{
  "place": {
    "name": "Place Name",
    "type": "Restaurant/Hotel/Attraction",
    "address": "Location Address",
    "category": "Business Category"
  },
  "overview": {
    "rating": {
      "average": 4.5,
      "total": 1500,
      "distribution": {
        "5": 800,
        "4": 400,
        "3": 200,
        "2": 70,
        "1": 30
      }
    },
    "summary": {
      "positive": ["Great service", "Clean rooms"],
      "negative": ["Expensive parking", "Slow WiFi"]
    }
  },
  "reviews": [
    {
      "author": {
        "name": "Reviewer Name",
        "level": "Local Guide",
        "reviews": 150,
        "verified": true
      },
      "content": {
        "rating": 5,
        "title": "Review Title",
        "text": "Review text...",
        "date": "2023-08-15",
        "photos": ["url1", "url2"],
        "visitDate": "August 2023",
        "experience": "Dined in"
      },
      "metrics": {
        "helpful": 25,
        "responses": 2
      },
      "ownerResponse": {
        "text": "Response text...",
        "date": "2023-08-16"
      }
    }
  ],
  "filters": {
    "rating": ["5 star", "4+ star"],
    "date": ["Latest", "This month"],
    "type": ["With photos", "With responses"]
  },
  "type": "placeReviews"
}

Fields:

  • place (object): Location information

  • overview (object): Rating summary

    • rating (object): Score details

    • summary (object): Key points

  • reviews (array): User reviews

  • filters (object): Review filters

  • type (string): Always "placeReviews"