Google Maps Reviews API
Using Google Maps Reviews API you can scrape Google Maps Reviews result without worrying about proxy rotation and data parsing. Our API is fast and reliable.
Last updated
Using Google Maps Reviews API you can scrape Google Maps Reviews result without worrying about proxy rotation and data parsing. Our API is fast and reliable.
Last updated
You have to send a GET request to http://api.scrapingdog.com/google_maps/reviews
with the below-given parameters.
Google Maps Reviews API pricing is available .
api_key
required
Your personal API key. Available on your dashboard Type: String
data_id required
language
Language of the results. Possible Values - en
, es
, fr
, de
, etc.
Default Value - en
Type - String
sort_by
It is used for sorting and filtering results.
Default: qualityScore
qualityScore
- the most relevant reviews. newestFirst
- the most recent reviews. ratingHigh
- the highest rating reviews. ratingLow
- the lowest rating reviews.
topic_id
The ID of the topic to filter the reviews. you can find these IDs in our JSON response.
Type: String
next_page_token
The next_page_token is used to get the next page results.
Type: String
results
This parameter specifies the maximum number of results to return, with a valid range of 1 to 20. The default value is 10.
Note: This parameter cannot be used on the first page when neither next_page_topic
nor topic_id
is provided. In such cases, the response will always contain 8 results.
cURL "https://api.scrapingdog.com/google_maps/reviews?api_key=APIKEY&data_id=0x89c25090129c363d:0x40c6a5770d25022b"
import requests
api_key = "5eaa61a6e562fc52fe763tr516e4653"
url = "https://api.scrapingdog.com/google_maps/reviews"
params = {
"api_key": api_key,
"data_id": "0x89c25090129c363d:0x40c6a5770d25022b"
}
response = requests.get(url, params=params)
if response.status_code == 200:
data = response.json()
print(data)
else:
print(f"Request failed with status code: {response.status_code}")
const axios = require('axios');
const api_key = '5eaa61a6e562fc52fe763tr516e4653';
const url = 'https://api.scrapingdog.com/google_maps/reviews';
const params = {
api_key: api_key,
data_id: "0x89c25090129c363d:0x40c6a5770d25022b"
};
axios
.get(url, { params: params })
.then(function (response) {
if (response.status === 200) {
const data = response.data;
console.log(data)
} else {
console.log('Request failed with status code: ' + response.status);
}
})
.catch(function (error) {
console.error('Error making the request: ' + error.message);
});
<?php
// Set the API key and request parameters
$api_key = '5eaa61a6e562fc52fe763tr516e4653';
$data_id = '0x89c25090129c363d:0x40c6a5770d25022b';
// Set the API endpoint
$url = 'https://api.scrapingdog.com/google_maps/reviews/?api_key=' . $api_key . '&data_id=' . $data_id;
// Initialize cURL session
$ch = curl_init($url);
// Set cURL options
curl_setopt($ch, CURLOPT_RETURNTRANSFER, true);
// Execute the cURL request
$response = curl_exec($ch);
// Check if the request was successful
if ($response === false) {
echo 'cURL error: ' . curl_error($ch);
} else {
// Process the response data as needed
echo $response;
}
// Close the cURL session
curl_close($ch);
require 'net/http'
require 'uri'
# Set the API key and request parameters
api_key = '5eaa61a6e562fc52fe763tr516e4653'
data_id = '0x89c25090129c363d:0x40c6a5770d25022b'
# Construct the API endpoint URL
url = URI.parse("https://api.scrapingdog.com/google_maps/reviews/?api_key=#{api_key}&data_id=#{data_id}")
# Create an HTTP GET request
request = Net::HTTP::Get.new(url)
# Create an HTTP client
http = Net::HTTP.new(url.host, url.port)
http.use_ssl = true # Enable SSL (https)
# Send the request and get the response
response = http.request(request)
# Check if the request was successful
if response.is_a?(Net::HTTPSuccess)
puts response.body # Process the response data as needed
else
puts "HTTP request failed with code: #{response.code}, message: #{response.message}"
end
import java.io.BufferedReader;
import java.io.InputStreamReader;
import java.net.HttpURLConnection;
import java.net.URL;
import java.io.IOException;
public class Main {
public static void main(String[] args) {
try {
// Set the API key and request parameters
String apiKey = "5eaa61a6e562fc52fe763tr516e4653";
String data_id = "0x89c25090129c363d:0x40c6a5770d25022b";
// Construct the API endpoint URL
String apiUrl = "https://api.scrapingdog.com/google_maps/reviews/?api_key=" + apiKey
+ "&data_id=" + data_id
// Create a URL object from the API URL string
URL url = new URL(apiUrl);
// Open a connection to the URL
HttpURLConnection connection = (HttpURLConnection) url.openConnection();
// Set the request method to GET
connection.setRequestMethod("GET");
// Get the response code
int responseCode = connection.getResponseCode();
if (responseCode == 200) {
// Read the response from the connection
BufferedReader reader = new BufferedReader(new InputStreamReader(connection.getInputStream()));
String inputLine;
StringBuilder response = new StringBuilder();
while ((inputLine = reader.readLine()) != null) {
response.append(inputLine);
}
reader.close();
// Process the response data as needed
System.out.println(response.toString());
} else {
System.out.println("HTTP request failed with response code: " + responseCode);
}
// Close the connection
connection.disconnect();
} catch (IOException e) {
e.printStackTrace();
}
}
}
{
"locationDetails": {
"title": "Statue of Liberty",
"address": "New York, NY 10004",
"rating": 4.7,
"reviews": 105930
},
"topics": [
{
"keyword": "ferry",
"mentions": 3592,
"id": "/m/0ddnl"
},
{
"keyword": "island",
"mentions": 2968,
"id": "/m/03s0c"
},
{
"keyword": "pedestal",
"mentions": 1555,
"id": "/m/05607t"
},
{
"keyword": "torch",
"mentions": 287,
"id": "/m/07dd4"
},
{
"keyword": "crown",
"mentions": 172,
"id": "/m/0nl46"
},
{
"keyword": "frédéric auguste bartholdi",
"mentions": 140,
"id": "/m/0jph6"
},
{
"keyword": "gustave eiffel",
"mentions": 93,
"id": "/m/036qb"
},
{
"keyword": "the declaration of independence",
"mentions": 77,
"id": "/m/07v5q"
},
{
"keyword": "skyline",
"mentions": 75,
"id": "/m/0204fg"
},
{
"keyword": "water taxi",
"mentions": 29,
"id": "/m/03s088"
}
],
"reviews_results": [
{
"link": "https://www.google.com/maps/reviews/data=!4m8!14m7!1m6!2m5!1sChdDSUhNMG9nS0VJQ0FnTUNZMHFtYWp3RRAB!2m1!1s0x0:0x40c6a5770d25022b!3m1!1s2@1:CIHM0ogKEICAgMCY0qmajwE%7CCgwIn4jWwAYQ4Mjh1gM%7C?hl=en-US,https://www.google.com/local/review/rap/report?postId=ChdDSUhNMG9nS0VJQ0FnTUNZMHFtYWp3RRAB&t=1&entityid=ChdDSUhNMG9nS0VJQ0FnTUNZMHFtYWp3RRIsChZDSUhNMG9nS0VJQ0FnTUNZMHFtYVR3EhJDZ3NJdXVuVndBWVFvSVg1SUEaLQoXQ0lITTBvZ0tFSUNBZ01DWTBxbWF6d0USEkNnc0l1dW5Wd0FZUW9JWDVJQSISCQAAAAAAAAAAESsCJQ13pcZAKhNDZ3dJbjRqV3dBWVE0TWpoMWdN&wv=1&d=286732320,0ahUKEwjb-9Xlk6iNAxWPVTABHSdoA9UQoykIZCgN,1,0,0ahUKEwik9t3lk6iNAxWKIVcBHahHFAsQ0pMFCAIoAA",
"rating": 5,
"likes": 0,
"date": "a week ago",
"iso_date": "2025-05-03T01:43:22.069Z",
"iso_date_of_last_edit": "2025-05-03T02:49:03.987Z",
"images": [
"https://lh3.googleusercontent.com/geougc-cs/AB3l90AEhZc9Gk3TjmtYGGgr-ZdYg7lJfg6E7gmg0APv1Fd1fnoHishSaBcKCzpygcJhmmeLPsjBvy4c28FI5BixnHAadtIWbOheDk5jH1R5F3HuA3gwG3YfsPRuOcwGmPzDcCBAxio",
"https://lh3.googleusercontent.com/geougc-cs/AB3l90DJ-lz7aZ9VYQ5OJg8-zByPiPlFJYykpGCtpPLWZVOE0jFFwfgxPvKiy9ve5l-E7RWn7HCXyEBSsRBwAqqpa7RnzrLEQNphMV85pD-qJleO0IIZObH1hFQnEVAvLxZ1odGJS4KgUA",
"https://lh3.googleusercontent.com/geougc-cs/AB3l90BpXG2KCSf2cFlzUW3r_96HuNapqvBT2VfqIf5I-5qzglczeH7JY6ffJ2Jjabx3Y1cItBk0z4LV0RTt5P2F8XghdWvTqD0FXlR1sxU0Cgy8WVcuj_NH1nuLl1v-WywfCm2NXJjk",
"https://lh3.googleusercontent.com/geougc-cs/AB3l90AvKd8ZTshM61OHXpYj4lL0qFi9fhqhVUAUa9ayeUZmX18G80GKuFWueuhXD7fRSneJ2s9103OvgU0uQwdD8TGombklkBV-pMx6dzWOTFPf1x2NXtvRYUkXRKQZC9Dif1uNZ-_x",
"https://lh3.googleusercontent.com/geougc-cs/AB3l90CCaf7eVL-lJdVyV1tti2ClTvPlLaqATRSoGA9_6Ca3Zovj3AQB09YaMSWzeguciB2IMOQIFbA6LmFGG6B_1BOvu_Vf5wg1IaAKe3gprKzNwELFrdcBVUwU-pKmfc-RU87DZc6y",
"https://lh3.googleusercontent.com/geougc-cs/AB3l90DxJ1yFM4l9jUJiGqwBxEdEwpOJ0rTuffN-c0gUGH01Sw_IXngfJYqaNdc18eccjaNucIdhQToXIKGdZbLO0oXUS-RvSZER8MagmabYk5sp41xflzTIyH9sj-t37mJyRGNNXdSiqQ",
"https://lh3.googleusercontent.com/geougc-cs/AB3l90DsLjnC_XuaJ7OVVFMcAj_lQp7t9bw5IwLOHTj1-Ja2uIIZTOMKxn5Ns7_aNEfKicjhMZOaZ6qd1h7FmRfxi-4hH4I_vR_0gN0xTJGuMvQkSuOfCJDplNtS6-oB4fI6ZNbHyFlW",
"https://lh3.googleusercontent.com/geougc-cs/AB3l90DdiiInnwFXQaYw5x_kdYGqSiewIlvPIFicVz4ugwCcgN-H2cxOuFSlsgCtDAIJSJTIbMSdCcP0sonbEPVNKjUGYuBk7hDeT7NKcxzxRA9VOJJNAzQOpcAg8dk3eGFh7uIPnglGWQ",
"https://lh3.googleusercontent.com/geougc-cs/AB3l90B0slOy93Os87osxNDHj2pjm2s2ynwchkDb_k8uGm2mm4Dv9y4FCA_Ugs7LzQ6dkcxJBBSW1x55xsLijfVbbo6HA2jAp4O4MABZ0DdHlZReeQ53AX4g61q_OgSRaY1CKwwIkcRV"
],
"source": "Google",
"review_id": "ChdDSUhNMG9nS0VJQ0FnTUNZMHFtYWp3RRAB",
"user": {
"name": "Rana El-Zughbi",
"link": "https://www.google.com/maps/contrib/105019454691062485758/reviews?hl=en-US",
"contributor_id": 105019454691062485758,
"thumbnail": "https://lh3.googleusercontent.com/a-/ALV-UjVmuyem3R2lW8JZTgxRmXfJdR9bbbMzzOC3ukz06U8_k649h-SnZA=s120-c-rp-mo-ba4-br100",
"local_guide": true,
"reviews": 39,
"photos": 124
},
"snippet": "Visiting the Statue of Liberty was an unforgettable experience! Having the opportunity to go all the way up to the top was truly amazing, the views were breathtaking and it felt like a once-in-a-lifetime moment. The museum was very impressive, full of history and well-presented exhibits that the whole family enjoyed. It’s a meaningful and enriching experience for all ages. Highly recommended!",
"details": {
"visited_on": "Weekend",
"wait_time": "10–30 min",
"reservation_recommended": "Yes"
},
"response": {
"iso_date": "",
"iso_date_of_last_edit": "",
"date": "",
"response_from_owner_string": ""
}
},
{
"link": "https://www.google.com/maps/reviews/data=!4m8!14m7!1m6!2m5!1sChZDSUhNMG9nS0VJQ0FnTUNZc3JYNkRREAE!2m1!1s0x0:0x40c6a5770d25022b!3m1!1s2@1:CIHM0ogKEICAgMCYsrX6DQ%7CCgwI4qbWwAYQqIeXoAM%7C?hl=en-US,https://www.google.com/local/review/rap/report?postId=ChZDSUhNMG9nS0VJQ0FnTUNZc3JYNkRREAE&t=1&entityid=ChZDSUhNMG9nS0VJQ0FnTUNZc3JYNkRREi4KF0NJSE0wb2dLRUlDQWdNQ1lzclg2alFFEhNDZ3dJNHFiV3dBWVFxSWVYb0FNGi0KFkNJSE0wb2dLRUlDQWdNQ1lzclg2VFESE0Nnd0k0cWJXd0FZUXFJZVhvQU0iEgkAAAAAAAAAABErAiUNd6XGQCoTQ2d3STRxYld3QVlRcUllWG9BTQ&wv=1&d=286732320,0ahUKEwjb-9Xlk6iNAxWPVTABHSdoA9UQoykIdSgI,1,1,0ahUKEwik9t3lk6iNAxWKIVcBHahHFAsQ0pMFCB0oAQ",
"rating": 5,
"likes": 1,
"date": "a week ago",
"iso_date": "2025-05-03T03:54:10.872Z",
"iso_date_of_last_edit": "2025-05-03T03:54:10.872Z",
"images": [
"https://lh3.googleusercontent.com/geougc-cs/AB3l90BNj2Vo-KhRH7vV_W0AZatunyFK-IPB7NQxqfMA4zoNOVGrVcOAUAyevqNeWbGjRbRePxkPhK8u2IRWG9NZ3Nq-s-hpodHFcRmc6FkfdC7I1O0yYgtHvY3MqftyF6Y_c3p4sa8evQ",
"https://lh3.googleusercontent.com/geougc-cs/AB3l90Dg3s3EOob2KZRmkclA0yXRNIQ2llGglM7Y-vABD8_8gd37vGuuZtgfx2y0EhISk_t1kQpxr_bLVfSKvvtLx0YaeX_GHmga8fMqIcbB5cT2wzf_-rgdhxQSscAsRB2wSaWyY2ui",
"https://lh3.googleusercontent.com/geougc-cs/AB3l90CT-d67HFnY1m-sRhNfHupylDLO4QboGvc21b3R2EuZL3voMOm92nVmI4EYJas8EAauUxmCKcLV9p1H4RNspJFztUafZ-tI5lZlEu4chiCAPkltj0FNtZ26fltV_koTGCt3MSePOA",
"https://lh3.googleusercontent.com/geougc-cs/AB3l90CLzDTQZsLKjfrL11Xjl0nPhyqW2dqxocofgim0VZ5bBz0oBAqaZnDPhT5s-4FM6wFxfqowxrnzmb6jO6QTub8gAcVxpxQkd1zFF8atxnNDHEkhrInK5XhJMx2UClioEAtWrBTg"
],
"source": "Google",
"review_id": "ChZDSUhNMG9nS0VJQ0FnTUNZc3JYNkRREAE",
"user": {
"name": "Hamish Braddick - Zeald",
"link": "https://www.google.com/maps/contrib/100993482426299574489/reviews?hl=en-US",
"contributor_id": 100993482426299574489,
"thumbnail": "https://lh3.googleusercontent.com/a-/ALV-UjWxTE8xuR7PXppnpcFofDccFHxZTcWETT6n-Qm5-IBJYOoR7d5A=s120-c-rp-mo-ba4-br100",
"local_guide": true,
"reviews": 121,
"photos": 41
},
"snippet": "Fun day out on the water. The statue was very impressive. Had to wait in a queue a bit but the ferries were consistent and so cheap, like 25 for the trip there and back with stops at the statue and Ellis Island if you wanted. Make sure you buy tickets and avoid the hawkers posing as officials at the ferry.",
"details": {
"visited_on": "Weekday",
"wait_time": "10–30 min",
"reservation_recommended": "Yes"
},
"response": {
"iso_date": "",
"iso_date_of_last_edit": "",
"date": "",
"response_from_owner_string": ""
}
},
{
"link": "https://www.google.com/maps/reviews/data=!4m8!14m7!1m6!2m5!1sChZDSUhNMG9nS0VJQ0FnTURvLXAyY1lnEAE!2m1!1s0x0:0x40c6a5770d25022b!3m1!1s2@1:CIHM0ogKEICAgMDo-p2cYg%7CCgwIzp-nwAYQoIWviQI%7C?hl=en-US,https://www.google.com/local/review/rap/report?postId=ChZDSUhNMG9nS0VJQ0FnTURvLXAyY1lnEAE&t=1&entityid=ChZDSUhNMG9nS0VJQ0FnTURvLXAyY1lnEi4KF0NJSE0wb2dLRUlDQWdNRG8tcDJjNGdFEhNDZ3dJenAtbndBWVFvSVd2aVFJGi0KFkNJSE0wb2dLRUlDQWdNRG8tcDJjRWcSE0Nnd0l6cC1ud0FZUW9JV3ZpUUkiEgkAAAAAAAAAABErAiUNd6XGQCoTQ2d3SXpwLW53QVlRb0lXdmlRSQ&wv=1&d=286732320,0ahUKEwjb-9Xlk6iNAxWPVTABHSdoA9UQoykIhgEoCA,1,0,0ahUKEwik9t3lk6iNAxWKIVcBHahHFAsQ0pMFCC4oAg",
"rating": 4,
"likes": 0,
"date": "3 weeks ago",
"iso_date": "2025-04-24T05:44:46.556Z",
"iso_date_of_last_edit": "2025-04-24T05:44:46.556Z",
"images": [
"https://lh3.googleusercontent.com/geougc-cs/AB3l90CP1R5cK340p_xd85dow-IxVW0DK3I5tveoClKO2dLLhDO1CL4MbHpNwO9v5bIenCqElto6BJeGujHVFE_GFq7x8oMroa0xvLuMZUCBRC1VviYCZOSusO9jZyZEcrZIU43VA5PyPQ",
"https://lh3.googleusercontent.com/geougc-cs/AB3l90C1XlBrJs-Vix3TiJ3MznH4KbIysV1svuAxDoMdX0kYYUmkvHCyLdFOjZBMAcMxe2TuMRJO6RXx933QQjwcZbwn22T5JiE6ocI2f5oJ80RgkFJ6AobhwSvEo7rlplItrnon6MoO",
"https://lh3.googleusercontent.com/geougc-cs/AB3l90D5ZbyqsDLi-S5pH8YD0U1AAHoSvXavXNxJVXuqZKec5EvkmJIceb5c-dkrZG7kQOoyXTmXlLfPoO16lCWznNxue0c4QyAVQBfbRl0Od9Dup9P-CE3ihrcGiNCTO9lKzMZ7UwaD9Q",
"https://lh3.googleusercontent.com/geougc-cs/AB3l90A5HNiSm9LXK4cdbujv9dv664RS9Li1BuHZNooBn0h1XGhG4pnDJ3XzdEydF9CX2Y9S4z8SwI2Z1xvlRb-DUAqFM2Dj0Pp_2x6tXieEmv_UYxvNlLA7R5JKhIE_w4Uklhfe6Zzd"
],
"source": "Google",
"review_id": "ChZDSUhNMG9nS0VJQ0FnTURvLXAyY1lnEAE",
"user": {
"name": "B P",
"link": "https://www.google.com/maps/contrib/115171378258218677407/reviews?hl=en-US",
"contributor_id": 115171378258218677407,
"thumbnail": "https://lh3.googleusercontent.com/a-/ALV-UjVC6raGyt7z_5CsYg2nAQ6A3YVy_WOffBZJgfR782aDQY78s6qn=s120-c-rp-mo-ba5-br100",
"local_guide": true,
"reviews": 297,
"photos": 543
},
"snippet": "We visited during the Easter holiday with the family and had a great time exploring the Statue of Liberty! Booking our tickets in advance made everything smooth—from the ferry ride to accessing the pedestal. Seeing the statue up close was amazing, and we loved learning about its fascinating history, especially in the museum at the base, which showcases different pedestal designs and how the statue was assembled.\n\nThe pedestal entry has stairs or a lift, but on our visit, the lift was temporarily closed, so we took the stairs. It wasn’t too bad, though it might be a bit challenging for older or less mobile visitors. The views from the top were nice, though not breathtaking—next time, we’d love to book crown access (which requires planning months ahead!).\n\nThere’s a single food court on the island serving pizza and burgers, but as expected, prices were high and the quality was basic. I’d recommend bringing snacks, especially since all the walking can work up an appetite! Security was airport-style but moved quickly, and we had no issues bringing drinks and snacks along.\n\nOverall, it’s an iconic must-see, and we’d definitely recommend it for the up-close photos and chance to explore the island’s history. A memorable experience!",
"details": {
"visited_on": "Weekday",
"wait_time": "30–60 min",
"reservation_recommended": "Yes"
},
"response": {
"iso_date": "",
"iso_date_of_last_edit": "",
"date": "",
"response_from_owner_string": ""
}
},
{
"link": "https://www.google.com/maps/reviews/data=!4m8!14m7!1m6!2m5!1sChdDSUhNMG9nS0VJQ0FnTUNvallpbm1BRRAB!2m1!1s0x0:0x40c6a5770d25022b!3m1!1s2@1:CIHM0ogKEICAgMCojYinmAE%7CCgwIxs-LwAYQoLeT7gI%7C?hl=en-US,https://www.google.com/local/review/rap/report?postId=ChdDSUhNMG9nS0VJQ0FnTUNvallpbm1BRRAB&t=1&entityid=ChdDSUhNMG9nS0VJQ0FnTUNvallpbm1BRRItChZDSUhNMG9nS0VJQ0FnTUNvallpbldBEhNDZ3dJeHMtTHdBWVFvTGVUN2dJGi4KF0NJSE0wb2dLRUlDQWdNQ29qWWluMkFFEhNDZ3dJeHMtTHdBWVFvTGVUN2dJIhIJAAAAAAAAAAARKwIlDXelxkAqE0Nnd0l4cy1Md0FZUW9MZVQ3Z0k&wv=1&d=286732320,0ahUKEwjb-9Xlk6iNAxWPVTABHSdoA9UQoykIuQEoGQ,1,0,0ahUKEwik9t3lk6iNAxWKIVcBHahHFAsQ0pMFCD8oAw",
"rating": 5,
"likes": 0,
"date": "3 weeks ago",
"iso_date": "2025-04-19T00:01:10.767Z",
"iso_date_of_last_edit": "2025-04-19T00:01:10.767Z",
"images": [
"https://lh3.googleusercontent.com/geougc-cs/AB3l90Bl-fUAG6mg1PS8pyCa5V4q-ihnR1haPxuUS-FSflEMDHy9ZKAMxsYVyDneSNWJUlB4wTRXyNt-FGZAhBbb46184RL7Rx8-kIt7uVJMjhPaCrNV-D4UgV2-bbaqBhTBlSUGbGd0",
"https://lh3.googleusercontent.com/geougc-cs/AB3l90CkdZf-tELlxtX8fDbFSWJD5GctEUjV-yC3XFTXBjh09hR2-DUpgpBiXjmsw3Kvm9iacjfC-aH71Cu2Mo7t_O5zEUski7lDwAgtGCUyUe95ZtOcFxa-2N56LEZW93odiOCAr8M",
"https://lh3.googleusercontent.com/geougc-cs/AB3l90CX75jafAlsi-NO5jCEwGyILm7UkYcBRrf1PyENHf2KLhZV1DXOoCkpzMhdJM2uShsIt899sWAlnJ3RKrCeCTa3tiTfiTpRb44CIQbj8v7eTBREArgO7HrM3gZgOo2fuRUmInBSRw",
"https://lh3.googleusercontent.com/geougc-cs/AB3l90Ciim52rE6o4yCGO9voi72llJJGKO0hgmQrDFO4mnk3rslQRXlmM-0CX5qo8HJI80EMSHq-7C1z4OpZfQNnE3hsRdMV1cW7vcXSz_8TnI7oA7PT8foT9qI_Lj1X2tPc4Po2BncK",
"https://lh3.googleusercontent.com/geougc-cs/AB3l90A1oN0tOP585Wa8JGvdeDok6dlkz0m2Tulp_3mZ-e62yTykZ4zMSIQjHz63d_TmfKYpzZkq-54Eqa83RZkUwOKp0bymUee1QslJ1rDd3iqskD1Tx0ZcVzS01gE-vpyEMCI_dCZa0g",
"https://lh3.googleusercontent.com/geougc-cs/AB3l90DsGM7C5AqNCAfgElKo5ZRjBmhqfQJMhmK96PBrlqZjWRdv61lyaZ2pyCixEWOJGieiIkC9btim8w3kPoip-gREgSbZTODVBUv1yEJ6yn3NU-aGcqf0RamIz6TK3RrmkjaOw2a0",
"https://lh3.googleusercontent.com/geougc-cs/AB3l90B6oUvE4aVGpOeVHYeNg_XWJ322_ly8AxrOiKWhNUmdGJDCATHpbOryen7sbp-0bjuHBufoR5zAAj1AI9bhxRlMG7XF8YOhjWU8oMejBKSKwEbAW012Sqmd3wUtC-Fg4hiWuIsPTw",
"https://lh3.googleusercontent.com/geougc-cs/AB3l90A8C9YBqoKjdNmA3J00gnLPaOrMWCVkS1Szw4l-ykFdEuA3zNOxehvbAcKGSPJ3PoRcCU7IExJrl-c3raLOjOTU2s--CZLp8p82gWrXFPh2WEDtubpdi1NdWbGAbBodX3xyZYbb",
"https://lh3.googleusercontent.com/geougc-cs/AB3l90B8Pks_n-LF4AWZC7kgILk8jtk0-p_o03A-C_92OpjTiqnZNG31u_SO9io6oKgsBZSP6Yz0vwAqoJJ1_Qr6c4SaVzeok4xZGTTFGj-xjIeD38f_nRKS5kwr-eYFy1RI3dWKnk71Yg",
"https://lh3.googleusercontent.com/geougc-cs/AB3l90DUOVN6UdkrzhiqyJ1v6y1dE3TVrw3MuWlTXjs8_EcSW3eHpuKO2jXrnooGB0mKG9vHnV09B7MgbfP-R4mlxEMPSOgBXuxACz7u63P2BWYvUuPytLDivKcDNdnfFCnpIRSS1XRk",
"https://lh3.googleusercontent.com/geougc-cs/AB3l90AQH55E69XBHnn3AXt4MEkJbtJTNRSvGKwwX7FUkzh9I9kUKqIhysMsnEEty6WjyQgzCy3a_kmed2HctiNM4G1j2sRE-OOjqvUt-1hNGwtaxTJYzlo1HY15uoCQkHY7v79A6UqJ6w",
"https://lh3.googleusercontent.com/geougc-cs/AB3l90B7N_RGgt8sKYqVm4O3m5WC-tq8Nnk69GD-ZaqZaAU-pWt-nmHXwxFkKQN_v_-dUEPJAUmWDlwhOhB1FBc8G66KkXB5Bz4zWDXQp1dyepadu2hE7-F25ngrf01wSPNB3_VxOVI",
"https://lh3.googleusercontent.com/geougc-cs/AB3l90AUohGelB1u6rqIXFi-diKWNCnj6padozZlvkRORXpURYBxmw2NzzO-hPDEzGRNCxO7Dle6uqqTR9mn3-Fh0MtcVfJThnDhCCXDi9AcW38GaWqsFH7kym9YxV7ohe7UtziSmvf-eA",
"https://lh3.googleusercontent.com/geougc-cs/AB3l90BMpN2YavsAz_yKO0vIA2R-20BzS-0efJzop2426FncsKmbTD6FSaUE-soOkd7kBsLrTxnKJivmxxrs-qyNpo4IfZfTjqa0Owi8uHUMqypeylJekPyqoPqS51rqT9LoEDNUkXI",
"https://lh3.googleusercontent.com/geougc-cs/AB3l90CDpeWdm8uK7qso6amW8SDCsDQUh1-XpQYYfYUHhcJxg9VMo4nN9u01PB3MfjrbG3m37bzTpS8BFDQokpheIBSoHD9ftWyN1asa_F_Q75dugoHgVSg3RU-unaigiuq4KNSYyyU-",
"https://lh3.googleusercontent.com/geougc-cs/AB3l90A1RRuzBzHgjVw5VjDAV93Bfwq7XV4gdRFWN9cJQ9eez8GWmM3iRXHrAjxaGXEb6rrBQnnxyynKYeyIkjpCFazdvo2RZ56VC86Qt45McFNQoqsMqbCme9PFW50N5SAkgkcvuw2P",
"https://lh3.googleusercontent.com/geougc-cs/AB3l90ALsDW0TrvpjLT9in6mB_ecd-RYpKimG4uPAXAB7D5lrlSeqX8uFpn4tlb55Td0B0Zozu6jnM9hOmvhOK93vKnzkwYuQu8mJsUCol8ZJ3frYOT0ooZRSkS-ed0gleUoalqgGZqJ0A",
"https://lh3.googleusercontent.com/geougc-cs/AB3l90CSruEDzcW8XSDsSYR7AsU1k-3UN4FitdOH67CGQqYxudKJxwbfcf_rTA8nGXWA2-CFqOquSCdtzB3gV2a83d0s8SQ-BAWjgWk0OtOTlMEVf2jMDQ8c8LC0FKr4Iwt1tkZH5wU",
"https://lh3.googleusercontent.com/geougc-cs/AB3l90Az8qzgZUAdxK8-S_t3NNTirRLmAoA3uSaMfZrzEjWieKQeQ3dPVjyO-o-JGLlx9K4jcJtpHl1mVmDaKjbRuk5COsgyP5HsrSJItyMIxHK3nohxg3hjzKUmLy6jxAmHCj1MJNJuVA",
"https://lh3.googleusercontent.com/geougc-cs/AB3l90CYipVaank8TwAaUGHHgYVl5n5B2u9N5hx009y55KRJXHIVpWj3qHXoGkL5_5-JB-0WRy5gpqLiN1hX60bJotXRB4rMxTDhkRL_HjvLhKIB8JaIcUzpj0Rq5JzwTLLiENIvm24",
"https://lh3.googleusercontent.com/geougc-cs/AB3l90AuiXA135jeOrSFqUjUzG2k6pnihLqjqzpKiRyoxWqYxj9rxWsehiCZFP2vRw5LkSrhK0HptBeAplZaFEq76nb0wt7K1GbQB7XL4fZHLOsqFTioO8oCkHiN77lDgs2DyrfwhAlb"
],
"source": "Google",
"review_id": "ChdDSUhNMG9nS0VJQ0FnTUNvallpbm1BRRAB",
"user": {
"name": "Prodromos Peios",
"link": "https://www.google.com/maps/contrib/117436148598072105730/reviews?hl=en-US",
"contributor_id": 117436148598072105730,
"thumbnail": "https://lh3.googleusercontent.com/a-/ALV-UjWG70gM0gmHy-nPYgNliLUiH8l0_mIoXSY9o8pyEqqfpNUTzJjp=s120-c-rp-mo-ba6-br100",
"local_guide": true,
"reviews": 439,
"photos": 1784
},
"snippet": "First things first; If you are planning on visiting the statue and you want to go inside, prepare yourselves for a 4-5 hours trip from The Battery all the way to Liberty Island and then keep waiting on the line again to enter the statue. It would be wise to keep yourselves hydrated and protected from the sun, especially if you visit during summer months. Overall the experience is very nice and even if there are times I was tired, Lady Liberty truly deserves it all.",
"details": {
"visited_on": "Weekday",
"wait_time": "1 hr+",
"reservation_recommended": "Yes"
},
"response": {
"iso_date": "",
"iso_date_of_last_edit": "",
"date": "",
"response_from_owner_string": ""
}
},
{
"link": "https://www.google.com/maps/reviews/data=!4m8!14m7!1m6!2m5!1sChZDSUhNMG9nS0VJQ0FnTURvMXJYOENBEAE!2m1!1s0x0:0x40c6a5770d25022b!3m1!1s2@1:CIHM0ogKEICAgMDo1rX8CA%7CCgsI76mpwAYQsIGDCw%7C?hl=en-US,https://www.google.com/local/review/rap/report?postId=ChZDSUhNMG9nS0VJQ0FnTURvMXJYOENBEAE&t=1&entityid=ChZDSUhNMG9nS0VJQ0FnTURvMXJYOENBEi0KF0NJSE0wb2dLRUlDQWdNRG8xclg4aUFFEhJDZ3NJNzZtcHdBWVFzSUdEQ3caLAoWQ0lITTBvZ0tFSUNBZ01EbzFyWDhTQRISQ2dzSTc2bXB3QVlRc0lHREN3IhIJAAAAAAAAAAARKwIlDXelxkAqEkNnc0k3Nm1wd0FZUXNJR0RDdw&wv=1&d=286732320,0ahUKEwjb-9Xlk6iNAxWPVTABHSdoA9UQoykI0AEoCw,1,0,0ahUKEwik9t3lk6iNAxWKIVcBHahHFAsQ0pMFCHIoBA",
"rating": 5,
"likes": 0,
"date": "3 weeks ago",
"iso_date": "2025-04-24T15:12:47.023Z",
"iso_date_of_last_edit": "2025-04-24T15:12:47.023Z",
"images": [
"https://lh3.googleusercontent.com/geougc-cs/AB3l90CBeph8vB7gktGu99KpKmXmgwJ-DE7CfpZYeEc0wha3KgIH-0gACS0AURqGwwONCIbnh2hKmfbCD1spsWUXgngbKLnl996wbayQKopkg6o5WtAKvUFsjnwkDFUHm08MYHWK788X",
"https://lh3.googleusercontent.com/geougc-cs/AB3l90AXjZQloZ_ViX2QTK3FOBOIssP-TgjMJFbzLSsW3lv1713CCsE45W5N-7BmRQtt6foBUWAikKl1dO9CuabVsWqA9A4lIgHOwWrY4TbYUgU3b6S6wHkqqxhm5HmuPNOLaGhBIUlw",
"https://lh3.googleusercontent.com/geougc-cs/AB3l90C1_0dgIdwzHdgX8mfyrDatMPcRIwDxzfI6G7Kf2UDXZNNW40Ar6A8tzmK3fTXjn__DKHtTmHQKSyeq2AgJ18WqDuMWstm5p4H-34y-1CVfbXZ4d3eXgxvJqXsOWHZDnjVvHeLR3Q",
"https://lh3.googleusercontent.com/geougc-cs/AB3l90Dilwd4GDJL_6DZROtE_aSyZliWpCjfzpIR7eXYAcX8_NmAzN-aX4pWetQmhRA2R6Ox4L82jkOV_blq15zWO581Lr8PSkwOrgevjYncjUTb1VTaSlXpQOCdCEYqd4E5D4tlWZyw",
"https://lh3.googleusercontent.com/geougc-cs/AB3l90D8BxrGjH1Hws-umWkRo3OmL8-N3tieF2VwoSDPIvN03tJFAG7j2nYqLYK_DRI9I7r7_z0aIbfTZ5ziAjRo79_V-KQfgSjlG_0nGr4Pix2IZqLB-LC7fyy5wh2SRDqmsNqgBJ9G",
"https://lh3.googleusercontent.com/geougc-cs/AB3l90AnMU19Dv_iif4hgE47X67durBNISI96CQcYVVv94ZPs9vdlLziweTUo-BkDKGTvkXwXegZcoxERDp0dMqDVLq_VKwoNxi1k-JMplQofo4_qbG1y8vuqMTbnSk45ff3wh9HXsbE",
"https://lh3.googleusercontent.com/geougc-cs/AB3l90AlPSYL0d4VX4zD5jZY7usMu5GAXpVsCVee4zcLGD94JBS8FYi7GmAARb2JVsZz4m82Pi_eOSJfAHdg5GBYDgDI_URUF9DA2DQJlt77cauIYbklIRTiEndVO_iA0bm9tTJGsFxxCQ"
],
"source": "Google",
"review_id": "ChZDSUhNMG9nS0VJQ0FnTURvMXJYOENBEAE",
"user": {
"name": "Gary Hutchinson",
"link": "https://www.google.com/maps/contrib/100994343151567731653/reviews?hl=en-US",
"contributor_id": 100994343151567731653,
"thumbnail": "https://lh3.googleusercontent.com/a-/ALV-UjXQqF9L-YUKYI6IiIKgSDljvFrMVPMRh8Rrp0ZEMfVzktXaSD4=s120-c-rp-mo-ba3-br100",
"local_guide": true,
"reviews": 25,
"photos": 69
},
"snippet": "This was an absolute must see during our stay and it did not disappoint. The ferry ride to the island was spectacular and gave us enough time to enjoy the Hudson without wasting too much time. The island was easy access on and off and the facilities and shops were easy to get to and enjoy. The statue itself is magnificent and it was quite surreal to be actually stood in front of such an iconic landmark.",
"details": {
"visited_on": "Weekday",
"wait_time": "No wait",
"reservation_recommended": "Yes"
},
"response": {
"iso_date": "",
"iso_date_of_last_edit": "",
"date": "",
"response_from_owner_string": ""
}
},
{
"link": "https://www.google.com/maps/reviews/data=!4m8!14m7!1m6!2m5!1sChdDSUhNMG9nS0VNTFo4ZkhXcy1PbG53RRAB!2m1!1s0x0:0x40c6a5770d25022b!3m1!1s2@1:CIHM0ogKEMLZ8fHWs-OlnwE%7CCgwI3I6LwQYQiLyDzQE%7C?hl=en-US,https://www.google.com/local/review/rap/report?postId=ChdDSUhNMG9nS0VNTFo4ZkhXcy1PbG53RRAB&t=1&entityid=ChdDSUhNMG9nS0VNTFo4ZkhXcy1PbG53RRIuChdDSUhNMG9nS0VPcXIwSm1ncmVIem1nRRITQ2d3STNJNkx3UVlRaUx5RHpRRRotChZDSUhNMG9nS0VMZWc2dk9vdWJqOWJREhNDZ3dJM0k2THdRWVFpTHlEelFFIhIJAAAAAAAAAAARKwIlDXelxkAqE0Nnd0kzSTZMd1FZUWlMeUR6UUU&wv=1&d=286732320,0ahUKEwjb-9Xlk6iNAxWPVTABHSdoA9UQoykI3wEoBw,1,3,0ahUKEwik9t3lk6iNAxWKIVcBHahHFAsQ0pMFCIkBKAU",
"rating": 5,
"likes": 3,
"date": "3 days ago",
"iso_date": "2025-05-13T04:15:24.429Z",
"iso_date_of_last_edit": "2025-05-13T04:15:24.429Z",
"images": [
"https://lh3.googleusercontent.com/geougc-cs/AB3l90AhKIW_FdyO0BN2r2h70s1ipgdTNvGYBK7YPU2aTFG-5lIzMJ0uZKoYS0vCLBZ8p9CFSxQD5Cfj8QcxZU61g8CNj_AVrTrQJdwwflhJ0WbwkTO1O_Ht4BXwyhyLfCxLRntMY-Hkgw",
"https://lh3.googleusercontent.com/geougc-cs/AB3l90CVTrLtW1N3tMJQy4gbkOxBaHTdlGFGpUod9Qyoy3EQuBqs3o_S85ig3urMyN6Zg5GYI2_33vhwQI1Py5Mnwf1foMP9KxPHEL-jdWO3Bl4uotLn-yaMXBEq9CfaXqMcm8WcHbjbTA",
"https://lh3.googleusercontent.com/geougc-cs/AB3l90DYT_Oin994B1hbcK6E005sstp9W492RaCVzGLP3tw1p9ilWRamBXDvs_00VKsgYRnVXavRLJzBkYb7mOi4YQ4DN6JqOpKxckN6Ja39yYff_Gsfav0WgYOj9RX3HONUqcUyfVOy",
"https://lh3.googleusercontent.com/geougc-cs/AB3l90A4pHxKHe5VQZ80188iS4plrGfSWcgXkgYbh97qnUj2YFWIdpFPRPvGCP6qbLyZ1Crw_qSi7cMtZ4pCPWpe_XgubDw9KIBXvUql9QwFkOPhx89Nf4XOX5oa1cqQNLhDr10DzfIVNw",
"https://lh3.googleusercontent.com/geougc-cs/AB3l90BcA3eUl9micxiBtQTgliZ_ZsJt2q2-292Mum4pdmGHnMZ4sE38zwE8Vrei87Xewi37QkEHh3eQW4a7pisS5THuFgimWbhTEoIuMSySlp3n3TO2cC_6edh6pRUwDfkT_BHSsk4a",
"https://lh3.googleusercontent.com/geougc-cs/AB3l90AZEbGSIN_yp34I5dR1ooL1YawDiX0-bSkC1glDRN5SleMLH43ral4Q8lzBgF2CPuuqB4bJo1FFMdK6_cGm4OtqxI2KGSY_Fq9C_qG2YfqFbbCI0nQz84QxacZaI_HCB7p374aG"
],
"source": "Google",
"review_id": "ChdDSUhNMG9nS0VNTFo4ZkhXcy1PbG53RRAB",
"user": {
"name": "Muhammad Ahmad",
"link": "https://www.google.com/maps/contrib/109154765063650084328/reviews?hl=en-US",
"contributor_id": 109154765063650084328,
"thumbnail": "https://lh3.googleusercontent.com/a-/ALV-UjXn8C4cKCxkVVBJ-Nieu4_zY85zIYL48nDOhQoKKyFgyu8H_zSd=s120-c-rp-mo-ba4-br100",
"local_guide": true,
"reviews": 63,
"photos": 74
},
"snippet": "You can't skip visiting the statue of liberty! :D\n\nThe island is so nice! The views are very beautiful. The Souvenir shops are good too! buy something from there ;)",
"details": {},
"response": {
"iso_date": "",
"iso_date_of_last_edit": "",
"date": "",
"response_from_owner_string": ""
}
},
{
"link": "https://www.google.com/maps/reviews/data=!4m8!14m7!1m6!2m5!1sChdDSUhNMG9nS0VJQ0FnTURvay1Lb2l3RRAB!2m1!1s0x0:0x40c6a5770d25022b!3m1!1s2@1:CIHM0ogKEICAgMDok-KoiwE%7CCgwIpeq9wAYQgKbptAI%7C?hl=en-US,https://www.google.com/local/review/rap/report?postId=ChdDSUhNMG9nS0VJQ0FnTURvay1Lb2l3RRAB&t=1&entityid=ChdDSUhNMG9nS0VJQ0FnTURvay1Lb2l3RRItChZDSUhNMG9nS0VJQ0FnTURvay1Lb1N3EhNDZ3dJcGVxOXdBWVFnS2JwdEFJGi4KF0NJSE0wb2dLRUlDQWdNRG9rLUtveXdFEhNDZ3dJcGVxOXdBWVFnS2JwdEFJIhIJAAAAAAAAAAARKwIlDXelxkAqE0Nnd0lwZXE5d0FZUWdLYnB0QUk&wv=1&d=286732320,0ahUKEwjb-9Xlk6iNAxWPVTABHSdoA9UQoykIkgIoGQ,1,0,0ahUKEwik9t3lk6iNAxWKIVcBHahHFAsQ0pMFCJgBKAY",
"rating": 5,
"likes": 0,
"date": "2 weeks ago",
"iso_date": "2025-04-28T12:31:33.647Z",
"iso_date_of_last_edit": "2025-04-28T12:31:33.647Z",
"images": [
"https://lh3.googleusercontent.com/geougc-cs/AB3l90CjsQmGMmHgrOzonmM0jhw2O-lCVMnGcePpCvOJGMEWpfPMpHnfsirdekH_gzpsa7Nxr-cEcT2JyNvUNq8vSNPaWMUOOMqTvZFACZ7qXmUnPJNn_TP2-ZB6BSwUsIE5lxhY4AyX",
"https://lh3.googleusercontent.com/geougc-cs/AB3l90CJgbdwQaNF9Hp-qwKIyPoX-ZDZm2iQ5uN8FOyDXSoTkso_v--D8UXch81vpaplpCj24PTyUj04JQo6M9gDplOJ2GwStpoUFDmKcRNNTJsPFtEr2MWu7-6O7kah0UMp00yXFWF95Q",
"https://lh3.googleusercontent.com/geougc-cs/AB3l90AKOJJyCzqUbdbyjYuhurgL-qgRRDUwNAj0I-Ux7NZORw-NLXJpN2ysrqWYL8nrSvLnWfHaJX8-m_ZhZPKlVaeBsu-umPR7W0QLcyUHUI473CW-bk_UwpTZdX8Bt9EMl19Hjok",
"https://lh3.googleusercontent.com/geougc-cs/AB3l90Bm8ykMn0YrSZUtosAiMMVa6QS4UW5nDevWVtsvaWSLFFB9RIfQHvcHMCB7aKp2edv7jU8AQzMMq26jXeoKOKlnMoIJxArXccN9XMRBUORQf3HXCg32I0mHnBO7ebhLckoPDtPO8g",
"https://lh3.googleusercontent.com/geougc-cs/AB3l90CnCyQchNk03P2xvATNU8GWF1U-HZwK5smYyZFRcoJLi_IHrePqxRswgGe8fpzdUVQ73mlEXYrlIqL5fmy2yUSlJwzVYc6hFQAlpk8XGIjHGuN4I-lWf1AbYEPlygvhpJPEGZ0",
"https://lh3.googleusercontent.com/geougc-cs/AB3l90CoGWWFWf2W88GL7ANGiR556p4oBnzvPFasvwt22Qv_vEHSyQSc_9jmhKhei5XNpi0geoCky1HPqH5T3t8-nBjPmElrpFHuubICRubZCIeGN3zSHs1LJPErLWb7Pc2nvN01-CcyhQ",
"https://lh3.googleusercontent.com/geougc-cs/AB3l90DyZW3GgDmRF7B5jwYYK56u5vMe6rP30-BBpfrVagOp0vy7tsh6et_rtyV24iDh_U83v2zQghajNl5AE_m9SWvogZ_dF4g0coLdlOj3Wp4e6Fv4pfb6ycjgScFR69rNcg8qjenI",
"https://lh3.googleusercontent.com/geougc-cs/AB3l90DhvFuzjlOTjWohqjhG6X99KOhLkXkpS7N-_n1axxfYxjyD4ZXKPidtZLZN9H3kl-l7IbEZvv1XAGmnnS0GRiF0hymW2-chF5khWDlTBzyWPLK8JTwRol5xgWmsSjARLjW1ddLD3Q",
"https://lh3.googleusercontent.com/geougc-cs/AB3l90D99_ioSHeM5NEfFlHEZyGBDDqSO9pQNwv_fVbOOhOdY5egCstp5UF1OteqCyjKN06zQBRNcTDO2H3SxNo4z9fn5ooA3E_zcxWBY8jhoBNDfKgNZsetw8lzYcYzo5uqPfjZjuU",
"https://lh3.googleusercontent.com/geougc-cs/AB3l90AnRuxTr-m7wea8AEKRPwX66t2_puioxlziE1pOSdoTBqa-8S3qDDh85GGFanW3FH-04k9MSyXkCDJyZK-HsmPccfzvQ2xhGSQRASKSHiEIZ0CsGM_-rtEBMTpzIndOPwWeChA4",
"https://lh3.googleusercontent.com/geougc-cs/AB3l90BW74A1aw5mx7hJ8RY0s3yClaxLUTQMQe3EkrILbwPp-ilKrTyhk8EKJpboNNgmjDIFC6AnGhYgZhoIrOdrbI7WcOMv-Wu6I1uNqk6oEXqrrJM5WaY-gx6q5N83nEIkMQ_ut3N8",
"https://lh3.googleusercontent.com/geougc-cs/AB3l90AE0EfL6M_addtMphYj4bR9x76xektf55X8Y0_o4xnUIu59pKpEFRlaz6q_XCs5oHpxuXrFeIVSqrXUAw_Din7-D59NzdTXie8NDODPql2QqsR4JTLgDGTw46vlYGRJw2u9fiJX",
"https://lh3.googleusercontent.com/geougc-cs/AB3l90AaeDVct0vL8f9MbPS0iGKY32QQ7yB2yeiobzNepM1aUFK-YbZpmx7JVVYJalDClkv1A9oUWqos9DULcJeOzUeB3s0NRjqaw7U7JEgDb5c8Ean6Ayps42rPOP0TOGrPyoINIvWX",
"https://lh3.googleusercontent.com/geougc-cs/AB3l90C4VUGJSIIFMtNg0WuXVnGKev4tcMrqao_4MF_9yWHVC1-Mb2xlHtFwDyrBbMMtODqrkdt-V9aQNGRenFaR5IS622-g8ZdhR2u1-ckcGtFKc7fA_-2F51UJ2XFwMY5E0-HliFiX",
"https://lh3.googleusercontent.com/geougc-cs/AB3l90CnnSKthBswgqAe3oG8Pb_FmKuGT_4ubyKYfKQ5V6zmGKOf06qRtbrW4WOIjhmsm_uL5foCuqwPNpG3Owt-lTGYfiHclv0DKSidEC8giSVjV_xDjehzoWNOMGAv4Do03CYG205T",
"https://lh3.googleusercontent.com/geougc-cs/AB3l90B8zlh5ir-0fYqtvrP8V24BUVqo48iM9xiHwJhC1z3xBzc3BuEAP_RITx4mWYCJ1ojgtW1QRXRFLRBXSiZBa-PhEkg1hkAnzWZw7N6QamxGlvYNB8Mb6leduZGchRmGFplSY_lUWQ",
"https://lh3.googleusercontent.com/geougc-cs/AB3l90ByBc2-A1Ftdr_LWEPKGZyHCfaXEKo8r8_3_yp9STzMZqLqIZGngfY5cq2KMMLGt8EjXVPmYbzJpD6n2Ieejfqr9tCDBGnT739PZ25P9Cz7bz6w0lsdB3XwZA6bXv37WLrwZpGT",
"https://lh3.googleusercontent.com/geougc-cs/AB3l90AFTD81BL1fhWNk1f0DPA3P5oBaDY8a97E2n7mkKb_m6uMdjlQNpRC5LTRMQ5zuofpPv3KL-DFoT89dESP21TGKji8F7FdHjRJvnSKL4_w6OyFd6Zaf1kwlbALuc_Yi1rWFqrBW4g",
"https://lh3.googleusercontent.com/geougc-cs/AB3l90AFEXAJEET9yI0MdUxYw5MWCQLOHQ4RQsQEd5THWAygITnvJCACSjOz3963aiVfjDZgELzKcZo4TxbkWb-RHLCbgVy9dSqNGOsGHFBZ6RkGAhh7Cxc_j61WKKwjy2TsIva5eYg",
"https://lh3.googleusercontent.com/geougc-cs/AB3l90DjthhzXL7-fpEMi4AEkwjN1dMYQ2zR3WfCnvejU0kXtPUQu32ljmtPtBzsn7Au6B8maAx3qlDrLDSHsatCVzv27Z9AaM3cxImx2SaOIWf7fw_fH9OAUhNkka9t1Tw6i4Rj9voZ",
"https://lh3.googleusercontent.com/geougc-cs/AB3l90BS6Cm2giNkk5HMuLdOlP_678kZE8VbERXwCreKxPjyvkmPp8znpnnhZHWa-A7PBat1e4hloW7qcsM6t9NlfLbnt6L1l0O8-VmNWpSejMeTCEet7IY5yhoROCqF3vh0dSf7F6s"
],
"source": "Google",
"review_id": "ChdDSUhNMG9nS0VJQ0FnTURvay1Lb2l3RRAB",
"user": {
"name": "Mayalcito Bhalala",
"link": "https://www.google.com/maps/contrib/106021385084149807258/reviews?hl=en-US",
"contributor_id": 106021385084149807258,
"thumbnail": "https://lh3.googleusercontent.com/a-/ALV-UjXJ_aEEXNZHmfiqjP8WgjJVi6wagVM_FKCs4My9DigJ6OPDtZi2=s120-c-rp-mo-ba4-br100",
"local_guide": true,
"reviews": 26,
"photos": 66
},
"snippet": "An unforgettable experience! The Statue of Liberty is truly awe inspiring, a powerful symbol of freedom and hope. Seeing it up close was breathtaking the craftsmanship and sheer size are incredible. The ferry ride over offered stunning views of the New York skyline and the harbor. The staff were helpful and organized, making the visit smooth and enjoyable. The grounds were clean and well maintained, with plenty of informative exhibits about the statue’s history. Whether you’re climbing to the crown or just admiring it from below, it’s a must see landmark. Absolutely worth the trip an iconic piece of American history!",
"details": {
"visited_on": "Weekday",
"wait_time": "Up to 10 min",
"reservation_recommended": "Yes"
},
"response": {
"iso_date": "",
"iso_date_of_last_edit": "",
"date": "",
"response_from_owner_string": ""
}
},
{
"link": "https://www.google.com/maps/reviews/data=!4m8!14m7!1m6!2m5!1sChZDSUhNMG9nS0VJQ0FnTUNZcWQ2MEt3EAE!2m1!1s0x0:0x40c6a5770d25022b!3m1!1s2@1:CIHM0ogKEICAgMCYqd60Kw%7CCgwIg_nhwAYQuICntQI%7C?hl=en-US,https://www.google.com/local/review/rap/report?postId=ChZDSUhNMG9nS0VJQ0FnTUNZcWQ2MEt3EAE&t=1&entityid=ChZDSUhNMG9nS0VJQ0FnTUNZcWQ2MEt3Ei4KF0NJSE0wb2dLRUlDQWdNQ1lxZDYwcXdFEhNDZ3dJZ19uaHdBWVF1SUNudFFJGi0KFkNJSE0wb2dLRUlDQWdNQ1lxZDYwYXcSE0Nnd0lnX25od0FZUXVJQ250UUkiEgkAAAAAAAAAABErAiUNd6XGQCoTQ2d3SWdfbmh3QVlRdUlDbnRRSQ&wv=1&d=286732320,0ahUKEwjb-9Xlk6iNAxWPVTABHSdoA9UQoykIvwIoFg,1,0,0ahUKEwik9t3lk6iNAxWKIVcBHahHFAsQ0pMFCMsBKAc",
"rating": 5,
"likes": 0,
"date": "a week ago",
"iso_date": "2025-05-05T08:53:23.648Z",
"iso_date_of_last_edit": "2025-05-05T08:53:23.648Z",
"images": [
"https://lh3.googleusercontent.com/geougc-cs/AB3l90DKKVlywKgTIy1evuyPQu1Ehjwc4yTGM23Q1u4pNfGKO1XOHntjuEW4HUttvMWnTKIA8MtgC8XqsFm879yofb9yw4iWZ07kkeTD91Tiq2G4XTlCEcXYfHaQRtwYnNVaTt0Saa6O4A",
"https://lh3.googleusercontent.com/geougc-cs/AB3l90BDDoj0LWQF3mNn-MSNZT2k1JgPBq4rRAshp4NzZTWUg64qvyXHgaNtk6ry7vPW_eHAanLRZa3khbd9ftfcWtn6nwKx2qLnLIUo3hjFeBIBtVtfzJ5ZVZjOychFli22Yf5DfTIB",
"https://lh3.googleusercontent.com/geougc-cs/AB3l90ByvqeftA3Qn3wB4dgi33P2BCHcDks2Vmn5cGxWlcJiGoHsHJ_4VhfXv_hrxrKDXCwR1t2DN2q-vtn4miWk_uGAFKBigBCldPC172nnRVNTSAsZCYa6kFt3QWMgJhuZNfmLYCAC-g",
"https://lh3.googleusercontent.com/geougc-cs/AB3l90C2QAqLCQfF4wh1a7wA2jjptVAEOeY70hJUGr8tYa8CMAcAxTeMKIKPS6UupqOcAgOS9ESchIxEavkmaRY_DnZq_qbSXuFd-tW4tlVbJERSCungztCvq4SwuEtJW7POrXP69hAA",
"https://lh3.googleusercontent.com/geougc-cs/AB3l90DA5ZhoJ6cJSEoJbITkLz1T-C-rJwWBCYNYVtIY0YPyLU2qi4xyfPvy73Vx426GHCdHdEdjXic_nInYAs44gOXKfdC9r0IVp9iRPxARlFKvIzgilOn2j-nDwypV3HS4igOiumEj",
"https://lh3.googleusercontent.com/geougc-cs/AB3l90Bqe93WZqqUDZYZK_gm2L1UfadyPJfSxyXu1uosorx8Qb0rN2yYVtYRsx4szwguyClKjQJNjJaotabWqMRw-QxVlgGXtaAfZzVoZTIizyOV6gr8eRBwoOxnbcs915_8F6qEHBrE",
"https://lh3.googleusercontent.com/geougc-cs/AB3l90AfYxijJ27MsijTeJGUt7J2Xp79sb8HrcmiGZJL-wfl6wK85zM6vviSoYi6uxYpP2gXv1DAe92xPhjlx5cSToF9XgZUrVZ0EQc732EZhWdhNgxAWjX4dPyhBnZ7bUb4Y1qTp2jf_w",
"https://lh3.googleusercontent.com/geougc-cs/AB3l90DI1Wq7jyBVBAhMzqhw7zSzpyaILqwL4k0rzvy-c305skgGQL0y0gPWSAoa9LnBMQq2zq89XKXZ_3EQKy2fuB9Fy1LHcYMIs-_bti3SYQi5O4UEZ0jL_yLBkWnLgn2zVNg5cVvL",
"https://lh3.googleusercontent.com/geougc-cs/AB3l90Bo2Dl__e2skRhUMQCQPQ3sYDsyTty9jUutFnxd_r-jPFd3jdY6g5OTF5EUVMy1DEkHqvPwgXYlAB-2qf1NR9nS_zC4qFad8dZ3HonSBidq22O_Q8nb5T_zZpPn2U8mLeBcklBk",
"https://lh3.googleusercontent.com/geougc-cs/AB3l90D1TGdjsATxRYlGL7l-5YBeuX8_I-ojVfu4W8W6k_oPGHdSSVfyg4BnhZHmAcBcOunGeSJRiakVtIMxsSDQzOAQgqkH4Cm8NAWuu_v0tnfyTFqMuO-jTkriW7qP0W35wpind2Ob",
"https://lh3.googleusercontent.com/geougc-cs/AB3l90ANc3aH-uYi1ZEl_2-jJmrs_4VNKNO1Qp9MEJ-EC0bvEUWVMwAhcJ7KcnYqGfK4ypu84JKxokucvhDJRGWRKas1c93mF5SlMwgAgOMRQM35SQEhyw0rUKeL-vZO3lfXfaqCR2E4",
"https://lh3.googleusercontent.com/geougc-cs/AB3l90AW5_UkNzJYL1Kq4d_mO_Tx_-8QJsZYaxVGtC-OiUuX2I_HdAyzkKJ9i3At7nYgixHhBrMqhqp9XWUmt5X33b-hb7dwndCE29isuL5MpB4iPye0pUvX7Lw6SdMlDY-3i51cRzc",
"https://lh3.googleusercontent.com/geougc-cs/AB3l90Cj-rcEsl5vPE5fQENVCtq6MNJ4St9QITWii5wDyoATjI8XOih5XlwQvuA6Q_9YlOECi4HHEV8RY1jHOKwkRepCBjPrZWGfHPaLstPji5u6-spMtGrEXebW__K3oe273zoqdIw_",
"https://lh3.googleusercontent.com/geougc-cs/AB3l90ASZqAUqyM9Hbha-mKxQ2_xkbBZ2d0VkhrqrJHqwEu_8_Vt0ngCde-NtCTbGbfjGmXnc_7W16YyPOajWzuq1vGTF4JCJd8wue2uSKdeAFA9KlNsfVX5AlzgIDtihCh-u-Enb0Mw",
"https://lh3.googleusercontent.com/geougc-cs/AB3l90BbNONcU4-3lOGpbEWd-If3RNvojbVZuy7tboz2aza9aOQnNmfoLqdEDW7vTVxIrprSQ85qfcKKi89mg91M-jaBvs1HV2qqLBNVwJW0jXNidAEs34c3e0RMuGiQd7EQ5DSdodDOAA",
"https://lh3.googleusercontent.com/geougc-cs/AB3l90C9h1596DsdNjLktAIwrPIq5pce9StwHVtXzyNBqfQbO0tUtlnqj7BaVQF1F4T_WOOMTYtl4tKvkwk2sHjaeEtikkk8ryZFrZ3UPGoA5rHv-gCIaFmi9MPODFavWNdl4vDuvCrG",
"https://lh3.googleusercontent.com/geougc-cs/AB3l90DYJgp7faX7uwKFDlFi-bDest7nvufyfykoQ6ByzvKchbRYyGfn9cyg0emOnuIMmgL80Zvlg1gJnI37-JVb7hH9hbkBTlYpde6MkYNFl8WeOLAWZE0053ev8JxOcvpQa2mmquvudg",
"https://lh3.googleusercontent.com/geougc-cs/AB3l90DEe6SBldh5zEw-jP86JYGMhdfDjJDl2gk5rzbDPlMbmpHlyS9AiTdLibT52yNsrD1nkNaoCG9J2vYAoxj546MBIBh-QLE5FEX5Wat37hOIqqSCGddMm02AqWW_Qg9icc6Vu7w"
],
"source": "Google",
"review_id": "ChZDSUhNMG9nS0VJQ0FnTUNZcWQ2MEt3EAE",
"user": {
"name": "Gratto Apoio a Negócios",
"link": "https://www.google.com/maps/contrib/107060582610682190334/reviews?hl=en-US",
"contributor_id": 107060582610682190334,
"thumbnail": "https://lh3.googleusercontent.com/a-/ALV-UjUmAsRC68md7iXavrSQu9xdkZTAovbHkKTLdUpJto7VftYVKhgP=s120-c-rp-mo-ba3-br100",
"local_guide": true,
"reviews": 19,
"photos": 81
},
"snippet": "Amazing and unforgettable experience in New York!\n\nVisiting the Statue of Liberty and the Ellis Island Immigration Museum was definitely one of the highlights of my trip. The whole experience is very well organized, from the ferry boarding to the exhibitions.\n\nThe museum on Liberty Island tells the story and symbolism of the Statue through original artifacts, videos, and interactive displays. The museum on Ellis Island is deeply moving — you walk through the same halls where millions of immigrants once passed, and see real belongings, photos, documents, and emotional testimonies.\n\nIt’s essential to buy your tickets in advance, especially if you want access to the pedestal or the crown, as spots are limited. Even with a ticket, lines to board the ferry can be long, and all visitors go through airport-style security, so arrive early and be prepared.\n\nI booked the full guided tour through the GetYourGuide app, and highly recommend it! Having a guide made a huge difference — we learned so much more through historical context and personal stories that we wouldn’t have known otherwise.\n\nFinal tip: take your time, wear comfortable shoes, and don’t miss the breathtaking view of the New York City skyline. Totally worth it!",
"details": {
"visited_on": "Weekday",
"wait_time": "30–60 min",
"reservation_recommended": "Yes"
},
"response": {
"iso_date": "",
"iso_date_of_last_edit": "",
"date": "",
"response_from_owner_string": ""
}
}
],
"pagination": {
"next": "https://api.scrapingdog.com/google_maps/reviews?language=en&next_page_token=CAESBkVnSUlDQQ==&data_id=0x89c25090129c363d:0x40c6a5770d25022b&api_key=APIKEY",
"next_page_token": "CAESBkVnSUlDQQ=="
}
}
It is the Google Maps data ID. You can get this by entering the location name as the query in our .
Type: String