Shifter Documentation
  • Getting Started
  • PROXIES
    • Rotating Residential Proxies
    • Static Residential Proxies
  • SCRAPING API
    • Web Scraping API
      • API Request
      • Basic Request
      • Rendering JavaScript
      • Custom Headers
      • Custom Cookies
      • Proxies
      • Geolocation
      • Sessions
      • Forcing Timeouts
      • Binary Files
      • Waiting for CSS
      • Screenshot
      • Extraction Rules
      • JSON Auto Parser
      • Javascript Instructions
      • Disable Stealth
      • POST Requests
      • PUT Requests
      • Conclusion
      • API Errors
  • Google SERP API
    • Search APIs
      • Google Search API
      • Google Product API
      • Google Scholar Cite API
      • Google Scholar Author API
      • Google Scholar Profiles API
      • Google Scholar API
      • Google Autocomplete API
      • Google Maps Photos API
      • Google Maps Reviews API
      • Google Reverse Image API
      • Google Events API
      • Google Finance API
      • Google Play API
      • Google Jobs API
      • Google Local Services API
      • Google Jobs Listing API
      • Google Maps API
      • Google Trends API
        • Google Trends Categories List
        • Geo Parameter Options List
    • API Response
  • Bing SERP API
    • Search API
    • API Parameters
    • Basic API Requests
  • Yandex SERP API
    • Search API
    • Basic API Requests
    • API Parameters
  • Amazon API
    • Getting Started
      • API Parameters
      • Access the API
      • Supported Domains
    • Amazon Search
    • Amazon Seller Products
    • Amazon Seller Profile
    • Amazon Seller Feedback
    • Amazon Product
    • Amazon Category
    • Amazon Bestsellers
    • Amazon Deals
  • Useful Links
    • Github
    • Shifter Homepage
    • Knowledge Base
Powered by GitBook
On this page
  • Google Maps Reviews API Integration Examples
  • Ready to Use Google Maps Reviews Scraping Scripts:
  • Google Maps Reviews Parameters

Was this helpful?

  1. Google SERP API
  2. Search APIs

Google Maps Reviews API

Effortlessly extract reviews from Google Maps using the Google SERP API.

To harness this specific scraping capability, append the engine=google_maps_reviews parameter to your request.

Targeting just the reviews on Google Maps? The Google Maps Reviews API is tailored for this very purpose. By interfacing with this engine, you'll receive a structured JSON object encompassing all pertinent reviews, precisely aligned with your specified query.

Google Maps Reviews API Integration Examples

We will use following URL as an example for this request:

https://serp.shifter.io/v1?engine=google_maps_reviews&api_key=<YOUR_API_KEY>&data_id=0x4786c6ace45fe3bd:0x126d84580eedebe5

Ready to Use Google Maps Reviews Scraping Scripts:

curl --request GET --url "https://serp.shifter.io/v1?engine=google_maps_reviews&api_key=YOUR_API_KEY&data_id=0x4786c6ace45fe3bd:0x126d84580eedebe5"
const http = require("https");

const options = {
  "method": "GET",
  "hostname": "serp.shifter.io",
  "port": null,
  "path": "/v1?engine=google_maps_reviews&api_key=YOUR_API_KEY&data_id=0x4786c6ace45fe3bd:0x126d84580eedebe5",
  "headers": {}
};

const req = http.request(options, function (res) {
  const chunks = [];

  res.on("data", function (chunk) {
    chunks.push(chunk);
  });

  res.on("end", function () {
    const body = Buffer.concat(chunks);
    console.log(body.toString());
  });
});

req.end();
import http.client

conn = http.client.HTTPSConnection("serp.shifter.io")

conn.request("GET", "/v1?engine=google_maps_reviews&api_key=YOUR_API_KEY&data_id=0x4786c6ace45fe3bd:0x126d84580eedebe5")

res = conn.getresponse()
data = res.read()

print(data.decode("utf-8"))
<?php

$curl = curl_init();

curl_setopt_array($curl, [
  CURLOPT_URL => "https://serp.shifter.io/v1?engine=google_maps_reviews&api_key=YOUR_API_KEY&data_id=0x4786c6ace45fe3bd:0x126d84580eedebe5",
  CURLOPT_RETURNTRANSFER => true,
  CURLOPT_ENCODING => "",
  CURLOPT_MAXREDIRS => 10,
  CURLOPT_TIMEOUT => 30,
  CURLOPT_HTTP_VERSION => CURL_HTTP_VERSION_1_1,
  CURLOPT_CUSTOMREQUEST => "GET",
]);

$response = curl_exec($curl);
$err = curl_error($curl);

curl_close($curl);

if ($err) {
  echo "cURL Error #:" . $err;
} else {
  echo $response;
}
package main

import (
	"fmt"
	"net/http"
	"io/ioutil"
)

func main() {

	url := "https://serp.shifter.io/v1?engine=google_maps_reviews&api_key=YOUR_API_KEY&data_id=0x4786c6ace45fe3bd:0x126d84580eedebe5"

	req, _ := http.NewRequest("GET", url, nil)

	res, _ := http.DefaultClient.Do(req)

	defer res.Body.Close()
	body, _ := ioutil.ReadAll(res.Body)

	fmt.Println(res)
	fmt.Println(string(body))

}
HttpResponse<String> response = Unirest.get("https://serp.shifter.io/v1?engine=google_maps_reviews&api_key=YOUR_API_KEY&data_id=0x4786c6ace45fe3bd:0x126d84580eedebe5")
  .asString();
var client = new RestClient("https://serp.shifter.io/v1?engine=google_maps_reviews&api_key=YOUR_API_KEY&data_id=0x4786c6ace45fe3bd:0x126d84580eedebe5");
var request = new RestRequest(Method.GET);
IRestResponse response = client.Execute(request);
require 'uri'
require 'net/http'
require 'openssl'

url = URI("https://serp.shifter.io/v1?engine=google_maps_reviews&api_key=YOUR_API_KEY&data_id=0x4786c6ace45fe3bd:0x126d84580eedebe5")

http = Net::HTTP.new(url.host, url.port)
http.use_ssl = true
http.verify_mode = OpenSSL::SSL::VERIFY_NONE

request = Net::HTTP::Get.new(url)

response = http.request(request)
puts response.read_body

Google Maps Reviews Parameters

#1: Query Parameter

Parameter
Type
Description

data_id Required

string

Google Maps data ID that you are searching.

#2: Request Customisation Parameters

Parameter
Type
Description

topic_id

string

The ID of the topic you want to filter your request by.

#3: Geolocation Parameters

Parameter
Type
Description

hl

string

#4: Pagination Parameters

Parameter
Type
Description

sort_by

string

Sort your results in a particular way. Supported sort types: - qualityScore - most relevant reviews. - newestFirst - most recent reviews. - ratingHigh - highest rating reviews. - ratingLow - lowest rating reviews.

next_page_token

string

Token of the next page, used to retrieve results from the next page.

Response Example
{
  "search_parameters": {
    "google_maps_reviews_url": "https://www.google.com/async/reviewDialog?hl=en&async=feature_id:0x4786c6ace45fe3bd:0x126d84580eedebe5,sort_by:,next_page_token:,associated_topic:,_fmt:pc",
    "engine": "google_maps_reviews",
    "google_domain": "google.com",
    "device": "desktop",
    "data_id": "0x4786c6ace45fe3bd:0x126d84580eedebe5"
  },
  "place_info": {
    "title": "Starbucks Reserve® Roastery Milano",
    "address": "Via Cordusio, 1, Milano MI, Italy",
    "rating": 4,
    "reviews": 15665
  },
  "topics": [
    {
      "id": "/m/0168g6",
      "keyword": "factory",
      "mentions": 119
    },
    {
      "id": "/m/01q0j8",
      "keyword": "mixture",
      "mentions": 85
    },
    {
      "id": "/g/11bc594b4_",
      "keyword": "toasting",
      "mentions": 67
    },
    {
      "id": "/m/03rnxq",
      "keyword": "souvenirs",
      "mentions": 54
    },
    {
      "id": "/m/03hgyk",
      "keyword": "scenography",
      "mentions": 53
    },
    {
      "id": "/m/033mjv",
      "keyword": "merchandise",
      "mentions": 47
    },
    {
      "id": "/m/01ggs8",
      "keyword": "duomo di milano",
      "mentions": 38
    },
    {
      "id": "/m/0347sv",
      "keyword": "willy wonka",
      "mentions": 22
    }
  ],
  "reviews": [
    {
      "link": "https://www.google.com/maps/reviews/data=!4m8!14m7!1m6!2m5!1sChZDSUhNMG9nS0VJQ0FnSUNteTktN0VREAE!2m1!1s0x0:0x126d84580eedebe5!3m1!1s2@1:CIHM0ogKEICAgICmy9-7EQ%7CCgsIxcLsjgYQgJP5Gw%7C?hl=en-US",
      "date": "9 months ago",
      "rating": 5,
      "snippet": "",
      "likes": 5,
      "user": {
        "link": "https://www.google.com/maps/contrib/101226074382524834848?hl=en-US&sa=X&ved=2ahUKEwjfnsrVg4P7AhXA8LsIHaqKCgQQvfQBegQIARA5",
        "thumbnail": "https://lh3.googleusercontent.com/a/ALm5wu0jmD-Jbz_qPQD_ILtOGb4GgTPFCfl4ST-Mb0cq8A=s40-c-c0x00000000-cc-rp-mo-ba6-br100",
        "name": "Elena",
        "photos": 1866,
        "reviews": 262,
        "local_guide": true
      },
      "images": [
        "https://lh5.googleusercontent.com/p/AF1QipNQcuhGEGJxDIsEwQllYAF8U44RTlcVGJEZIXBa=w100-h100-p-n-k-no",
        "https://lh5.googleusercontent.com/p/AF1QipNU7U21Pxa4KPNC_W4PPQVGIZq4wpWLfBR26vpv=w100-h100-p-n-k-no",
        "https://lh5.googleusercontent.com/p/AF1QipMrmOmwn8pgQAbUEoWJ0jhjSzi3k6jIiHHUvKRL=w100-h100-p-n-k-no",
        "https://lh5.googleusercontent.com/p/AF1QipNRDBmsiZiWi4XjenIJ0-0ZI3QRZg3Tl36uUw2s=w100-h100-p-n-k-no",
        "https://lh5.googleusercontent.com/p/AF1QipNPHQ6l_j-QnENbysuljqtWZ0p3wrluPyqTKB4D=w100-h100-p-n-k-no",
        "https://lh5.googleusercontent.com/p/AF1QipP22iJHsiO05z_JF2EnOrM6q_2-qyLhG1Rx9c0t=w100-h100-p-n-k-no",
        "https://lh5.googleusercontent.com/p/AF1QipN7NbNYJDmcwRZj867LhW74A8-dyw99y_jV2xoO=w100-h100-p-n-k-no",
        "https://lh5.googleusercontent.com/p/AF1QipOYNBOQqhw4CKbF-PMQUjC5YLbC6Ze1XDKstzqk=w100-h100-p-n-k-no",
        "https://lh5.googleusercontent.com/p/AF1QipOGP_AYVN_zIbOhl9Lag5pDp8T72I7jFbJkMJW0=w100-h100-p-n-k-no",
        "https://lh5.googleusercontent.com/p/AF1QipPzvIUzVJTwYZeO-MutneoP880O0EMYM78V2mpk=w100-h100-p-n-k-no",
        "https://lh5.googleusercontent.com/p/AF1QipOewDRmKnF89crqZRuRCXB2JZUl__UwRy9X9MSt=w100-h100-p-n-k-no",
        "https://lh5.googleusercontent.com/p/AF1QipMnHg4TNIuHwdaG87PhOSn1M0P7IQ8KmKNZMI2v=w100-h100-p-n-k-no",
        "https://lh5.googleusercontent.com/p/AF1QipNSkmz599YhOQaVbIfM73noZ3w7SdWWDsyp9rue=w100-h100-p-n-k-no"
      ]
    },
    {
      "link": "https://www.google.com/maps/reviews/data=!4m8!14m7!1m6!2m5!1sChdDSUhNMG9nS0VJQ0FnSUMyekxQS21RRRAB!2m1!1s0x0:0x126d84580eedebe5!3m1!1s2@1:CIHM0ogKEICAgIC2zLPKmQE%7CCgwIw-DgkgYQoIP6iQM%7C?hl=en-US",
      "date": "6 months ago",
      "rating": 5,
      "snippet": "",
      "likes": 5,
      "user": {
        "link": "https://www.google.com/maps/contrib/100499641657645166106?hl=en-US&sa=X&ved=2ahUKEwjfnsrVg4P7AhXA8LsIHaqKCgQQvfQBegQIARBd",
        "thumbnail": "https://lh3.googleusercontent.com/a-/ACNPEu8jgn1H4llJznUXSFiTnt5OHHhiExQVy3qUp6D8P1s=s40-c-c0x00000000-cc-rp-mo-ba6-br100",
        "name": "Nikolai Sandved",
        "photos": 7169,
        "reviews": 436,
        "local_guide": true
      },
      "images": [
        "https://lh5.googleusercontent.com/p/AF1QipPN35WPCjZjIR8Fkk3QoaF7EDvVeSKp39e1tPI0=w100-h100-p-n-k-no",
        "https://lh5.googleusercontent.com/p/AF1QipPcEZATIYn4HXLVLBv04HWJ1_p73u3-WyfQ9woX=w100-h100-p-n-k-no",
        "https://lh5.googleusercontent.com/p/AF1QipPw1GuLxxnlntfhdKmQJ5qN67hJCcBdhiAbt9A3=w100-h100-p-n-k-no",
        "https://lh5.googleusercontent.com/p/AF1QipNYjuihYROuQK91Q11I7YTaswBwxsvB9vDG4HD2=w100-h100-p-n-k-no",
        "https://lh5.googleusercontent.com/p/AF1QipMwqYBFiWAkUEYADn1OpN6xy9J3KTATU88hAmPT=w100-h100-p-n-k-no",
        "https://lh5.googleusercontent.com/p/AF1QipOwHqHqzY5W1vWjiqQCiR0sxt9PtG3HBo82CTfL=w100-h100-p-n-k-no",
        "https://lh5.googleusercontent.com/p/AF1QipPhEOgZqxkP42wvW8gGGY4ixen-DFTmi264Nem1=w100-h100-p-n-k-no",
        "https://lh5.googleusercontent.com/p/AF1QipNnn8mj7luXjM_8JmxmSLNoi2SzY66RLoBrXwua=w100-h100-p-n-k-no",
        "https://lh5.googleusercontent.com/p/AF1QipMJOSrLNDwMP0pWZzVbtVJ09c2Fq-q1qdfKuKfI=w100-h100-p-n-k-no",
        "https://lh5.googleusercontent.com/p/AF1QipNSi3IAivsydiHQrHN9-Q9YO6AGC4_bpa3qKFZe=w100-h100-p-n-k-no",
        "https://lh5.googleusercontent.com/p/AF1QipNaLtisaPDJXeKxHmPo-AjON9u9Nr08nu9ekLdF=w100-h100-p-n-k-no",
        "https://lh5.googleusercontent.com/p/AF1QipM86L242AKUBjy7necd7lGCANydZuWqpe6Z60sw=w100-h100-p-n-k-no",
        "https://lh5.googleusercontent.com/p/AF1QipNG_fFnsBGrlIgJlXa6qzTjQny_v3O1s51hEvzd=w100-h100-p-n-k-no"
      ]
    },
    {
      "link": "https://www.google.com/maps/reviews/data=!4m8!14m7!1m6!2m5!1sChZDSUhNMG9nS0VJQ0FnSURtLXUyWElBEAE!2m1!1s0x0:0x126d84580eedebe5!3m1!1s2@1:CIHM0ogKEICAgIDm-u2XIA%7CCgwIk6XEjwYQuL-qrQI%7C?hl=en-US",
      "date": "9 months ago",
      "rating": 5,
      "snippet": "I think it is for sure worth a visit. Only a few blocks walk from the duomo makes it super easy to get to. It’s in an old post office and it’s beautifully done.It is obviously a tourist stop and doesn’t have the vibe of a tradition Italian cafe but it is for sure an experience. Also if you are looking for the typical Starbucks country cups they don’t have it. They only have higher end fancy ones. Which I think are still worth buying.I went on a Friday night and there was a large line outside. But it wasn’t too crazy and it moved quick.I might return here just for a high end coffee drink.I think it is for sure worth a visit. Only a few blocks walk from the duomo makes it super easy to get to. It’s in an old post office and it’s beautifully done. …More",
      "likes": 5,
      "user": {
        "link": "https://www.google.com/maps/contrib/114738631309829187370?hl=en-US&sa=X&ved=2ahUKEwjfnsrVg4P7AhXA8LsIHaqKCgQQvfQBegUIARCBAQ",
        "thumbnail": "https://lh3.googleusercontent.com/a/ALm5wu2Dmi7mCVSx3IcFYFXcXoKKEO_qQGJT8_cuaeP6=s40-c-c0x00000000-cc-rp-mo-ba5-br100",
        "name": "Steve Thomas",
        "photos": 699,
        "reviews": 252,
        "local_guide": true
      },
      "images": [
        "https://lh5.googleusercontent.com/p/AF1QipMONKBypD_y_-_6vxJs4ac3HKxn835TNIsSI4Zg=w100-h100-p-n-k-no",
        "https://lh5.googleusercontent.com/p/AF1QipNkzgdw5P2LmMpF3bO_jTmyjVUaV4TgQlv0Yy0A=w100-h100-p-n-k-no",
        "https://lh5.googleusercontent.com/p/AF1QipOmQURaeqtUeKHvTNccnID8OG-B-RQ45xHAuIWI=w100-h100-p-n-k-no",
        "https://lh5.googleusercontent.com/p/AF1QipNGZHQS1QnxpkXVme6gGMWECD83RDz21vH54QV3=w100-h100-p-n-k-no"
      ]
    },
    {
      "link": "https://www.google.com/maps/reviews/data=!4m8!14m7!1m6!2m5!1sChdDSUhNMG9nS0VJQ0FnSUNlLTdtTnVBRRAB!2m1!1s0x0:0x126d84580eedebe5!3m1!1s2@1:CIHM0ogKEICAgICe-7mNuAE%7CCgsI3e-_mQYQwJruCQ%7C?hl=en-US",
      "date": "a month ago",
      "rating": 5,
      "snippet": "One of the most beautiful Starbucks Reserve. Absolutely beautiful concept. I was first hesitant to try this in Milan but they did a great job to fit into the greatness of Milan’s beauty. Very modern and sophisticated. Definitely worth the visit for the experience, but if you want just an espresso and pastries, I’m sure there are better options.One of the most beautiful Starbucks Reserve. Absolutely beautiful concept. I was first hesitant to try this in Milan but they did a great job to fit into the greatness of Milan’s beauty. Very modern and sophisticated. Definitely worth the …More",
      "likes": 1,
      "user": {
        "link": "https://www.google.com/maps/contrib/104380676185544444997?hl=en-US&sa=X&ved=2ahUKEwjfnsrVg4P7AhXA8LsIHaqKCgQQvfQBegUIARChAQ",
        "thumbnail": "https://lh3.googleusercontent.com/a-/ACNPEu_t_HCvsE4xWXDy6ZTQ67PzkADk3Xm692Rh9p4qSw0=s40-c-c0x00000000-cc-rp-mo-ba5-br100",
        "name": "David Hong",
        "photos": 605,
        "reviews": 205,
        "local_guide": true
      },
      "images": [
        "https://lh5.googleusercontent.com/p/AF1QipMi5BEeWnk0oIdiy5O5J1l_y6KdD0HZQHOXjqgg=w100-h100-p-n-k-no",
        "https://lh5.googleusercontent.com/p/AF1QipOeIxXGbw5j_XyQnkm5EYW1jiJsGMSYd_DAs67U=w100-h100-p-n-k-no",
        "https://lh5.googleusercontent.com/p/AF1QipPFhn3So7ZuVMOHcK1DWB63VcwaFSHBP3qeFH9A=w100-h100-p-n-k-no",
        "https://lh5.googleusercontent.com/p/AF1QipNaWhzCmHBHLVZ6-9jy1iI8YcngFJBOY2hXaRg_=w100-h100-p-n-k-no",
        "https://lh5.googleusercontent.com/p/AF1QipMyHqIk3gkzMpkhQ63_lislHaooYwDeOcJT_POz=w100-h100-p-n-k-no",
        "https://lh5.googleusercontent.com/p/AF1QipPZsq2ZgA0pBecOHG1tvdhtayIPgyt6rVGkjEfW=w100-h100-p-n-k-no",
        "https://lh5.googleusercontent.com/p/AF1QipNfNTQMKBAsJJmlq-5ZkW0NF6e0b-f4qg_gU4MI=w100-h100-p-n-k-no",
        "https://lh5.googleusercontent.com/p/AF1QipNvCxoh4zoG8aoftsWeL_wESRGTkwB8prCeQZy_=w100-h100-p-n-k-no"
      ]
    },
    {
      "link": "https://www.google.com/maps/reviews/data=!4m8!14m7!1m6!2m5!1sChdDSUhNMG9nS0VJQ0FnSUR1NTUtaXRnRRAB!2m1!1s0x0:0x126d84580eedebe5!3m1!1s2@1:CIHM0ogKEICAgIDu55-itgE%7CCgwIgeS9mAYQ2K6rrwM%7C?hl=en-US",
      "date": "a month ago",
      "rating": 4,
      "snippet": "5 star decor experience. The attention to detail was incredible, especially the timeline of Starbucks etched in bronze and the shifting coffee menu captured on a  split-flap display complete with relaxing audio accompaniment.The reserve shop coffees were too sweet as usual for Starbucks although this is probably patron dependant.The staff themselves range from friendly & helpful to standoffish & apathetic, but leaning more towards the former catagory.As a Reserve store this is definitely worth at least one visit, though cautioned to go earlier rather than later as this store gets busy and stays busy.5 star decor experience. The attention to detail was incredible, especially the timeline of Starbucks etched in bronze and the shifting coffee menu captured on a  split-flap display complete with relaxing audio accompaniment. …More",
      "likes": 0,
      "user": {
        "link": "https://www.google.com/maps/contrib/112923907780249122134?hl=en-US&sa=X&ved=2ahUKEwjfnsrVg4P7AhXA8LsIHaqKCgQQvfQBegUIARDHAQ",
        "thumbnail": "https://lh3.googleusercontent.com/a-/ACNPEu_z78Y-MnPjueBk372XV8kJAenwsW5SkG55sfYTwQ=s40-c-c0x00000000-cc-rp-mo-ba4-br100",
        "name": "Gerald Walus",
        "photos": 331,
        "reviews": 73,
        "local_guide": true
      },
      "images": [
        "https://lh5.googleusercontent.com/p/AF1QipOSmbn1a_SO1VxUs82iVue5hAVwHtNgVFDVAGNM=w100-h100-p-n-k-no",
        "https://lh5.googleusercontent.com/p/AF1QipPfiUtfIxsgXS2azj8zYQ3cdgsz4BJA9tgjqzA9=w100-h100-p-n-k-no",
        "https://lh5.googleusercontent.com/p/AF1QipOIknp2khP0kpGAFq2FAPUF5cuAo3cSjWJavFM2=w100-h100-p-n-k-no",
        "https://lh5.googleusercontent.com/p/AF1QipPoOlnVtg3Adr6QZuDiNRKL1wh11DDVy3bFANNh=w100-h100-p-n-k-no",
        "https://lh5.googleusercontent.com/p/AF1QipNT8fwCVfKLLR1dE0AaWy_CK0_Xm6qw-f3z57ug=w100-h100-p-n-k-no",
        "https://lh5.googleusercontent.com/p/AF1QipMybrF-kw0euq_jmqgiEnGUkqksBRm3S12LahgB=w100-h100-p-n-k-no",
        "https://lh5.googleusercontent.com/p/AF1QipMgzsIIWSxqVrF-RlW6c46OmMFfXXhWO7yDrnxa=w100-h100-p-n-k-no",
        "https://lh5.googleusercontent.com/p/AF1QipOVfpgU4Ie469Y12sd41V06-HhcU1Ppw6ee6lLF=w100-h100-p-n-k-no",
        "https://lh5.googleusercontent.com/p/AF1QipPczjdSLAveYDAGzgSYV4eZSBpZEgmwVLVEwYmD=w100-h100-p-n-k-no"
      ]
    },
    {
      "link": "https://www.google.com/maps/reviews/data=!4m8!14m7!1m6!2m5!1sChdDSUhNMG9nS0VJQ0FnSUQycjZXN3JRRRAB!2m1!1s0x0:0x126d84580eedebe5!3m1!1s2@1:CIHM0ogKEICAgID2r6W7rQE%7CCgwIv5PKlAYQ0KK7_QI%7C?hl=en-US",
      "date": "4 months ago",
      "rating": 5,
      "snippet": "",
      "likes": 2,
      "user": {
        "link": "https://www.google.com/maps/contrib/102466876071032297959?hl=en-US&sa=X&ved=2ahUKEwjfnsrVg4P7AhXA8LsIHaqKCgQQvfQBegUIARDuAQ",
        "thumbnail": "https://lh3.googleusercontent.com/a-/ACNPEu_w-pWFwsGYMLKLgSz8gRWFPxL4dX1A734Z27oo=s40-c-c0x00000000-cc-rp-mo-ba6-br100",
        "name": "Red Barker",
        "photos": 3420,
        "reviews": 468,
        "local_guide": true
      },
      "images": [
        "https://lh5.googleusercontent.com/p/AF1QipObuaI6RnVEv_nZGPPnHt_HSfWX6KXnDJ9y-Pzc=w100-h100-p-n-k-no",
        "https://lh5.googleusercontent.com/p/AF1QipNFcIMqQQh6cudX7jFNASBjbcjEMudXxmYP844O=w100-h100-p-n-k-no",
        "https://lh5.googleusercontent.com/p/AF1QipM1Vm4YRZHtzW8cG7tLV0EvU5SMSZWSrYQQBac0=w100-h100-p-n-k-no",
        "https://lh5.googleusercontent.com/p/AF1QipNl2MS5df3Zw1Dr6cxGFok3QcKEsreZjzCBWcGe=w100-h100-p-n-k-no",
        "https://lh5.googleusercontent.com/p/AF1QipMAqD8UOOEgjr4_LEO-lmjNVKuPkXQs3EIrKdxA=w100-h100-p-n-k-no",
        "https://lh5.googleusercontent.com/p/AF1QipPTJ6XeQ2yLlyqQPTbP6RDN3qiEggIEVsuGFQjM=w100-h100-p-n-k-no",
        "https://lh5.googleusercontent.com/p/AF1QipM7AguUuTtqC-xj8teDfIUSCdZc2WFlSAP01KvC=w100-h100-p-n-k-no",
        "https://lh5.googleusercontent.com/p/AF1QipMIVetzdyV-JIbK9z9_enem8Cu9EfVZ9eWk6zO7=w100-h100-p-n-k-no"
      ]
    },
    {
      "link": "https://www.google.com/maps/reviews/data=!4m8!14m7!1m6!2m5!1sChZDSUhNMG9nS0VJQ0FnSURtbE9pVUdREAE!2m1!1s0x0:0x126d84580eedebe5!3m1!1s2@1:CIHM0ogKEICAgIDmlOiUGQ%7CCgwI54ShjwYQ0KGykQI%7C?hl=en-US",
      "date": "9 months ago",
      "rating": 5,
      "snippet": "It’s the best Starbucks I’ve seen in my life. Even the taste of the coffee is different. You can grab something to eat or drink inside the Cafe or you can take it home. But I’m sure you will stay and enjoy the moment. And don’t forget to buy some gifts for your friends and family.",
      "likes": 4,
      "user": {
        "link": "https://www.google.com/maps/contrib/117624745076261356401?hl=en-US&sa=X&ved=2ahUKEwjfnsrVg4P7AhXA8LsIHaqKCgQQvfQBegUIARCNAg",
        "thumbnail": "https://lh3.googleusercontent.com/a/ALm5wu1aIDyUrJLQCX9dbJdbIKFm5N5ElwwvIEkBh2sJ=s40-c-c0x00000000-cc-rp-mo-ba5-br100",
        "name": "Omar Al Tamimi",
        "photos": 1232,
        "reviews": 128,
        "local_guide": true
      },
      "images": [
        "https://lh5.googleusercontent.com/p/AF1QipO-vKiPH0Xxh_uGt_9T8LULBPQKZB14nqNeETso=w100-h100-p-n-k-no",
        "https://lh5.googleusercontent.com/p/AF1QipOmibfl54hOuFC79BQg-PHdNMN3L6b4M7FCj9Gt=w100-h100-p-n-k-no",
        "https://lh5.googleusercontent.com/p/AF1QipP5PmM_4xVxNMF7YZLBcDxBvkc7LRVVu_kUF-D1=w100-h100-p-n-k-no",
        "https://lh5.googleusercontent.com/p/AF1QipOdA8aPj7o_o9nEPv6kjf3nI-u3JtWiznsNGzs-=w100-h100-p-n-k-no",
        "https://lh5.googleusercontent.com/p/AF1QipP47Ut610vpkVfr1Zq-e4JdDld3-5RjAij1eJTD=w100-h100-p-n-k-no",
        "https://lh5.googleusercontent.com/p/AF1QipNyBDcniIxKR1X2lleVUUloaffwIxmU5gW7uNiE=w100-h100-p-n-k-no",
        "https://lh5.googleusercontent.com/p/AF1QipMD7EB-L91q-gTotWuJpu-vzMQ3wtIq_9MMtZiK=w100-h100-p-n-k-no",
        "https://lh5.googleusercontent.com/p/AF1QipPAMwZVh99kXcBra0lt7WqCN62yw4aRbD9cgN0O=w100-h100-p-n-k-no",
        "https://lh5.googleusercontent.com/p/AF1QipN7fxNhWabY56SYlTDWyaLPabplv66PMR9sIngQ=w100-h100-p-n-k-no",
        "https://lh5.googleusercontent.com/p/AF1QipNAsEVKPLTg0iszSoeAeAmTRl9HJfGbPUdbHcDp=w100-h100-p-n-k-no",
        "https://lh5.googleusercontent.com/p/AF1QipPjpkzlJYPwYbT7MYUBTb_Z71L-7C9HQSZOFXO3=w100-h100-p-n-k-no",
        "https://lh5.googleusercontent.com/p/AF1QipNaQs6D_QahM-XTWWU3X6tVLHvPwfZUENYIT8us=w100-h100-p-n-k-no",
        "https://lh5.googleusercontent.com/p/AF1QipP1fLYbE4AZnu_lTo-mD7L2M_wMX9vJ_NUfwXgy=w100-h100-p-n-k-no",
        "https://lh5.googleusercontent.com/p/AF1QipMIdkqYJ8T0Juft9n-BSfK3b4U0HJn948fkA11z=w100-h100-p-n-k-no",
        "https://lh5.googleusercontent.com/p/AF1QipP7xJuyq8A1pdazlB--TfTJ6Cnv1S5WMaHOFqov=w100-h100-p-n-k-no",
        "https://lh5.googleusercontent.com/p/AF1QipNC058Gqtu8Y5ivG0p1MxX9Sv5VVeTPj6T8D77a=w100-h100-p-n-k-no",
        "https://lh5.googleusercontent.com/p/AF1QipNXXqcIEPT9vXY4GpzBE4ao9b4vW45d947H6fFJ=w100-h100-p-n-k-no",
        "https://lh5.googleusercontent.com/p/AF1QipP9giKLu1wMLFdbyD7kv-cGLhYjk3HYItw_8Ies=w100-h100-p-n-k-no",
        "https://lh5.googleusercontent.com/p/AF1QipM9NJudVUAPtSWU9biI6IdcUsq-XbItR9XvxYzH=w100-h100-p-n-k-no",
        "https://lh5.googleusercontent.com/p/AF1QipPS66I21J8m_masBvYGZavu6Tzl87pVu_zwiL-I=w100-h100-p-n-k-no",
        "https://lh5.googleusercontent.com/p/AF1QipNKxjAPpS4yZdsp1nCZ9wuX02t8HOx0fl0N0J72=w100-h100-p-n-k-no"
      ]
    },
    {
      "link": "https://www.google.com/maps/reviews/data=!4m8!14m7!1m6!2m5!1sChZDSUhNMG9nS0VJQ0FnSURlMGFLUU1nEAE!2m1!1s0x0:0x126d84580eedebe5!3m1!1s2@1:CIHM0ogKEICAgIDe0aKQMg%7CCgwI4eabmgYQ0MeP0wE%7C?hl=en-US",
      "date": "2 weeks ago",
      "rating": 5,
      "snippet": "",
      "likes": 0,
      "user": {
        "link": "https://www.google.com/maps/contrib/100601517698308290083?hl=en-US&sa=X&ved=2ahUKEwjfnsrVg4P7AhXA8LsIHaqKCgQQvfQBegUIARC-Ag",
        "thumbnail": "https://lh3.googleusercontent.com/a-/ACNPEu_lnRrojS7rBeGnglFZ5ByS4HL4jlU-vsK3P9XQcg=s40-c-c0x00000000-cc-rp-mo-ba5-br100",
        "name": "Ritesh Sharan",
        "photos": 557,
        "reviews": 95,
        "local_guide": true
      },
      "images": [
        "https://lh5.googleusercontent.com/p/AF1QipPopqzAuhLqHgfSiOr8jB_5IiS9x41YlhBFAwo7=w100-h100-p-n-k-no",
        "https://lh5.googleusercontent.com/p/AF1QipPfiYMzLMqjh1RzhBGk3vBnXGmqqO8bCDoiUUW0=w100-h100-p-n-k-no",
        "https://lh5.googleusercontent.com/p/AF1QipOI7UIzcBw3QYWKsJ3feXAFFlQdQ_TkNL1GlwsH=w100-h100-p-n-k-no",
        "https://lh5.googleusercontent.com/p/AF1QipNg_YgN_mBQseJiHfpB_boQUtH44rjGU8LCDaoI=w100-h100-p-n-k-no",
        "https://lh5.googleusercontent.com/p/AF1QipP55EJbsY4s-s6BYq7eK3Bnq_atvir4n9B8FriP=w100-h100-p-n-k-no",
        "https://lh5.googleusercontent.com/p/AF1QipMt76Dsx-w5JxmxMEXw5Ggriizue0qzBNvXaS6L=w100-h100-p-n-k-no",
        "https://lh5.googleusercontent.com/p/AF1QipPq99pblOtQaqW8_-25r1jPpcbX3cDAh1pTIy4e=w100-h100-p-n-k-no",
        "https://lh5.googleusercontent.com/p/AF1QipNnkmA-pSWJJRkUW4heTiqSxbeCMKKzowW-tgA6=w100-h100-p-n-k-no",
        "https://lh5.googleusercontent.com/p/AF1QipMxO5m79-bKIjYdCn1Hu1_gG5NWqXf1u4QCJkDh=w100-h100-p-n-k-no",
        "https://lh5.googleusercontent.com/p/AF1QipOEIndW_qwU5IeLqkShzLE7-ZZsNtqdH_sz_wME=w100-h100-p-n-k-no"
      ]
    },
    {
      "link": "https://www.google.com/maps/reviews/data=!4m8!14m7!1m6!2m5!1sChdDSUhNMG9nS0VJQ0FnSURlc01Td3F3RRAB!2m1!1s0x0:0x126d84580eedebe5!3m1!1s2@1:CIHM0ogKEICAgIDesMSwqwE%7CCgwIoILYmQYQyMKJ6gI%7C?hl=en-US",
      "date": "4 weeks ago",
      "rating": 5,
      "snippet": "Not a Starbucks lover at all, but this place is next level. I guess it is because it is in Milan and they really had to compete to survive here. Beautiful Italian marble throughout, including the bathrooms. Authentic Italian food, pastries and cakes. Coffee was pretty good. Need to ask for an extra espresso shot in your cappuccino if you prefer stronger coffee.Not a Starbucks lover at all, but this place is next level. I guess it is because it is in Milan and they really had to compete to survive here. Beautiful Italian marble throughout, including the bathrooms. Authentic Italian food, pastries …More",
      "likes": 0,
      "user": {
        "link": "https://www.google.com/maps/contrib/110443391405673092105?hl=en-US&sa=X&ved=2ahUKEwjfnsrVg4P7AhXA8LsIHaqKCgQQvfQBegUIARDgAg",
        "thumbnail": "https://lh3.googleusercontent.com/a-/ACNPEu9TtqV2KIky3c6kRCWNFiMz_Q1k2y53pVURnyN0OTg=s40-c-c0x00000000-cc-rp-mo-ba4-br100",
        "name": "Wendy MN",
        "photos": 125,
        "reviews": 65,
        "local_guide": true
      },
      "images": [
        "https://lh5.googleusercontent.com/p/AF1QipNrExJYE5eiF74CN5hjJqw1j2J_Gi4ZHCd3NCTt=w100-h100-p-n-k-no",
        "https://lh5.googleusercontent.com/p/AF1QipOIi5xHXf9N50ZzIGfrXV3ppnF0UNNkoVZmpbf0=w100-h100-p-n-k-no",
        "https://lh5.googleusercontent.com/p/AF1QipO7_2hummrVkVjYZuiSanhM9EJd35GFBY8KtCH2=w100-h100-p-n-k-no",
        "https://lh5.googleusercontent.com/p/AF1QipMV4lnRtXeKTf_6uL997L689zLIm4Lh_HQZfJaN=w100-h100-p-n-k-no"
      ]
    },
    {
      "link": "https://www.google.com/maps/reviews/data=!4m8!14m7!1m6!2m5!1sChZDSUhNMG9nS0VJQ0FnSUR1NmE3WWVREAE!2m1!1s0x0:0x126d84580eedebe5!3m1!1s2@1:CIHM0ogKEICAgIDu6a7YeQ%7CCgsI6YiXmAYQoIeAVg%7C?hl=en-US",
      "date": "2 months ago",
      "rating": 5,
      "snippet": "",
      "likes": 0,
      "user": {
        "link": "https://www.google.com/maps/contrib/115961742179261946968?hl=en-US&sa=X&ved=2ahUKEwjfnsrVg4P7AhXA8LsIHaqKCgQQvfQBegUIARCCAw",
        "thumbnail": "https://lh3.googleusercontent.com/a-/ACNPEu8umtebBmReBnPWSSAwgmKYLaUGWwJPEsSE34HD=s40-c-c0x00000000-cc-rp-mo-ba4-br100",
        "name": "Claire Johnson",
        "photos": 222,
        "reviews": 111,
        "local_guide": true
      },
      "images": [
        "https://lh5.googleusercontent.com/p/AF1QipPhoKylq72ClxGYh0Ff3VY7lzrVWQWiediNPCBV=w100-h100-p-n-k-no",
        "https://lh5.googleusercontent.com/p/AF1QipMVq3wK9kJSXflHBGo3tL87d7IjgAmQCTB5xoY1=w100-h100-p-n-k-no",
        "https://lh5.googleusercontent.com/p/AF1QipMIZZY06H1o59Wzq9fWqrLrD0cpinUHJRGexEOU=w100-h100-p-n-k-no"
      ]
    }
  ],
  "searchdata_pagination": {
    "next_page_token": "CAESBkVnSUlDZw==",
    "next": "https://serp.shifter.io/v1?engine=google_maps_reviews&data_id=0x4786c6ace45fe3bd%3A0x126d84580eedebe5&next_page_token=CAESBkVnSUlDZw%3D%3D"
  }
}
PreviousGoogle Maps Photos APINextGoogle Reverse Image API

Last updated 1 year ago

Was this helpful?

The language you want to use for your Google search.

List of supported languages