Google Maps API
Using Google Maps API you can scrape Google Maps result without worrying about proxy rotation and data parsing. Our API is fast and reliable. Each successful request will cost you 5 API credits.
You have to send a GET request to http://api.scrapingdog.com/google_maps
with the below-given parameters.
Google Maps API pricing is available here.
Parameters
Scrapingdog Parameters
api_key
required
Your personal API key. Available on your dashboard. Type: String
Search Query
query
This is a Google Maps Search Query.
Example1 - query=pizza
Geographic Location
ll
The parameter specifies the GPS coordinates of the desired location for applying your query ('q'). It should follow this sequence: '@' followed by latitude, longitude, and zoom level, arranged as: @latitude,longitude,zoom.
For example - @40.7455096,-74.0083012,15z
This parameter is used only when the type
is set to search
.
Note: Parameter is required when using pagination.
Localization
domain
To obtain local results from a specific country, for example, for India, it will be "google.co.in," and for the UK, it will be "google.co.uk".
Type: String
Default: "google.com"
language
Language of the results. Possible Values - en
, es
, fr
, de
, etc.
Default Value - en
Type - String
country
Advanced Google Maps Parameters
data
The parameter can be used to filter search results. You can visit the Google Maps website, set the desired filters, and simply copy the data value from their URL to the Scrapingdog URL.
One use of this parameter is searching for a specific place, making it essential when the type
is set to "place
."
Alternatively, place_id
can be used.
To use the data
parameter for searching a specific place, it should be structured as follows:
!4m5!3m4!1s
+ data_id
+ !8m2!3d
+ latitude
+ !4d
+ longitude
This results in a string like:
!4m5!3m4!1s0x89c259b7abdd4769:0xc385876db174521a!8m2!3d40.750231!4d-74.004019
place_id
The place_id
can be used independently without any other optional parameters.
Type: String
Search Type
type
The parameter specifies the type of search to be performed. It can be set to:
search – Returns a list of results based on the specified
query
parameter.place – Returns details for a specific place when the
data
parameter is provided.
This parameter is not required when using place_id
.
Type: String
Pagination
page
This is the page number of Google searches. Its value can be 0 for the first page, 20 for the second page, and so on.
Default Value - 0
Type - String
We recommend starting with 0 and increasing by 20 for each subsequent page. While there is no strict limit on the maximum offset value, we suggest keeping it up to 100 (page six), as this aligns with the behavior of the Google Maps web app. Exceeding this may result in duplicate or irrelevant results.
API Example
cURL "https://api.scrapingdog.com/google_maps?api_key=APIKEY&q=coffee&ll=@40.7455096,-74.0083012,15.1z"
import requests
api_key = "5eaa61a6e562fc52fe763tr516e4653"
url = "https://api.scrapingdog.com/google_maps"
params = {
"api_key": api_key,
"query": "coffee",
'll': '@40.7455096,-74.0083012,15.1z'
}
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';
const params = {
api_key: api_key,
query: 'coffee',
'll': '@40.7455096,-74.0083012,15.1z'
};
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';
$query = 'coffee';
$ll = '@40.7455096,-74.0083012,15.1z';
// Set the API endpoint
$url = 'https://api.scrapingdog.com/google_maps/?api_key=' . $api_key . '&query=' . $query . '&ll=' . $ll;
// 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'
query = 'coffee'
ll = '@40.7455096,-74.0083012,15.1z'
# Construct the API endpoint URL
url = URI.parse("https://api.scrapingdog.com/google_maps/?api_key=#{api_key}&query=#{query}&ll=#{ll}")
# 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 query = "coffee";
String ll = "@40.7455096,-74.0083012,15.1z";
// Construct the API endpoint URL
String apiUrl = "https://api.scrapingdog.com/google_maps/?api_key=" + apiKey
+ "&query=" + query
+ "&ll=" + ll
// 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();
}
}
}
Response
{
"search_results": [
{
"title": "Culture Espresso",
"place_id": "ChIJdTyxUaxZwokRNAyNj1mBu8A",
"data_id": "0x89c259ac51b13c75:0xc0bb81598f8d0c34",
"data_cid": "-4558907976122037196",
"reviews_link": "https://api.scrapingdog.com/google_maps/reviews?api_key=APIKEY&data_id=0x89c259ac51b13c75:0xc0bb81598f8d0c34",
"photos_link": "https://api.scrapingdog.com/google_maps/photos?api_key=APIKEY&data_id=0x89c259ac51b13c75:0xc0bb81598f8d0c34",
"posts_link": "https://api.scrapingdog.com/google_maps/posts?api_key=APIKEY&data_id=0x89c259ac51b13c75:0xc0bb81598f8d0c34",
"gps_coordinates": {
"latitude": 40.753078099999996,
"longitude": -73.9913242
},
"provider_id": "/g/11b70ghhxf",
"rating": 4.6,
"reviews": 531,
"price": "$1–10",
"type": "Coffee shop",
"types": [
"Coffee shop"
],
"address": "247 W 36th St. New York, NY 10018",
"open_state": "Open ⋅ Closes 7 PM",
"hours": "Open ⋅ Closes 7 PM",
"operating_hours": {
"monday": "8 AM–7 PM",
"tuesday": "7 AM–7 PM",
"wednesday": "7 AM–7 PM",
"thursday": "7 AM–7 PM",
"friday": "7 AM–7 PM",
"saturday": "7 AM–7 PM",
"sunday": "8 AM–7 PM"
},
"phone": "(646) 438-9555",
"description": "Hip locale for espresso and cookies Vibrant, vintage-chic coffee shop, pairing pastries and house-baked cookies with espresso and iced drinks.",
"thumbnail": "https://lh5.googleusercontent.com/p/AF1QipNJCS1UEzqOOA_qupd3UDc6p1OTy5FmRY2DkEei=w86-h152-k-no"
},
{
"title": "Stumptown Coffee Roasters",
"place_id": "ChIJT2h1HKZZwokR0kgzEtsa03k",
"data_id": "0x89c259a61c75684f:0x79d31adb123348d2",
"data_cid": "8778389626880739538",
"reviews_link": "https://api.scrapingdog.com/google_maps/reviews?api_key=APIKEY&data_id=0x89c259a61c75684f:0x79d31adb123348d2",
"photos_link": "https://api.scrapingdog.com/google_maps/photos?api_key=APIKEY&data_id=0x89c259a61c75684f:0x79d31adb123348d2",
"posts_link": "https://api.scrapingdog.com/google_maps/posts?api_key=APIKEY&data_id=0x89c259a61c75684f:0x79d31adb123348d2",
"gps_coordinates": {
"latitude": 40.7457399,
"longitude": -73.9882272
},
"provider_id": "/g/1hhw712x0",
"rating": 4.5,
"reviews": 1564,
"price": "$1–10",
"type": "Coffee shop",
"types": [
"Coffee shop",
"Cafe",
"Coffee store",
"Tea store"
],
"address": "18 W 29th St New York, NY 10001",
"open_state": "Open ⋅ Closes 5 PM",
"hours": "Open ⋅ Closes 5 PM",
"operating_hours": {
"monday": "7 AM–5 PM",
"tuesday": "6:30 AM–5 PM",
"wednesday": "6:30 AM–5 PM",
"thursday": "6:30 AM–5 PM",
"friday": "6:30 AM–5 PM",
"saturday": "6:30 AM–5 PM",
"sunday": "7 AM–5 PM"
},
"phone": "(347) 414-7816",
"website": "https://www.stumptowncoffee.com/pages/locations-new-york-ace-hotel",
"thumbnail": "https://lh5.googleusercontent.com/p/AF1QipNhGUKZD71Tj4Gly4aYOONDu9IhHtwW5DUOakx5=w86-h103-k-no"
},
{
"title": "Gotham Coffee Roasters",
"place_id": "ChIJC_LvoIhawokRFL5-CuLYkco",
"data_id": "0x89c25a88a0eff20b:0xca91d8e20a7ebe14",
"data_cid": "-3850057741074776556",
"reviews_link": "https://api.scrapingdog.com/google_maps/reviews?api_key=APIKEY&data_id=0x89c25a88a0eff20b:0xca91d8e20a7ebe14",
"photos_link": "https://api.scrapingdog.com/google_maps/photos?api_key=APIKEY&data_id=0x89c25a88a0eff20b:0xca91d8e20a7ebe14",
"posts_link": "https://api.scrapingdog.com/google_maps/posts?api_key=APIKEY&data_id=0x89c25a88a0eff20b:0xca91d8e20a7ebe14",
"gps_coordinates": {
"latitude": 40.739861999999995,
"longitude": -73.992693
},
"provider_id": "/g/11c1vk0mgb",
"rating": 4.5,
"reviews": 218,
"price": "$1–10",
"type": "Coffee shop",
"types": [
"Coffee shop",
"Cafe",
"Coffee roasters",
"Coffee store",
"Coffee wholesaler"
],
"address": "23 W 19th St New York, NY 10011",
"open_state": "Open ⋅ Closes 5 PM",
"hours": "Open ⋅ Closes 5 PM",
"operating_hours": {
"monday": "9 AM–5 PM",
"tuesday": "7 AM–6 PM",
"wednesday": "7 AM–6 PM",
"thursday": "7 AM–6 PM",
"friday": "7 AM–6 PM",
"saturday": "7 AM–6 PM",
"sunday": "9 AM–5 PM"
},
"phone": "(212) 255-2972",
"description": "Hip cafe with specialty coffees Trendy coffee shop serving artisanal coffees & pastries in a cozy, black-&-white establishment.",
"thumbnail": "https://lh5.googleusercontent.com/p/AF1QipNuYejnWiiXaawKzQhJzGXztldyBu_rVyY2WCd1=w128-h86-k-no"
},
{
"title": "Gregorys Coffee",
"place_id": "ChIJQTNrM69ZwokR3ggxzgeelqQ",
"data_id": "0x89c259af336b3341:0xa4969e07ce3108de",
"data_cid": "-6586903648621492002",
"reviews_link": "https://api.scrapingdog.com/google_maps/reviews?api_key=APIKEY&data_id=0x89c259af336b3341:0xa4969e07ce3108de",
"photos_link": "https://api.scrapingdog.com/google_maps/photos?api_key=APIKEY&data_id=0x89c259af336b3341:0xa4969e07ce3108de",
"posts_link": "https://api.scrapingdog.com/google_maps/posts?api_key=APIKEY&data_id=0x89c259af336b3341:0xa4969e07ce3108de",
"gps_coordinates": {
"latitude": 40.7477283,
"longitude": -73.9890454
},
"provider_id": "/g/11xdfwq9f",
"rating": 4.1,
"reviews": 1259,
"price": "$$",
"type": "Coffee shop",
"types": [
"Coffee shop"
],
"address": "874 6th Ave New York, NY 10001",
"open_state": "Open ⋅ Closes 7 PM",
"hours": "Open ⋅ Closes 7 PM",
"operating_hours": {
"monday": "7 AM–7 PM",
"tuesday": "6:30 AM–7 PM",
"wednesday": "6:30 AM–7 PM",
"thursday": "6:30 AM–7 PM",
"friday": "6:30 AM–7 PM",
"saturday": "6:30 AM–7 PM",
"sunday": "7 AM–7 PM"
},
"phone": "(877) 231-7619",
"website": "https://www.gregoryscoffee.com/",
"description": "House-roasted coffee, snacks & free WiFi Outpost of a chain of sleek coffeehouses offering house-roasted coffee, free WiFi & light bites.",
"thumbnail": "https://lh5.googleusercontent.com/p/AF1QipMy9sUaxoyyP-NnmqZG7joTzqExrzWhx1JlXywz=w152-h86-k-no"
},
{
"title": "Paper Coffee",
"place_id": "ChIJA5V7V69ZwokRNI_y14Yvu-w",
"data_id": "0x89c259af577b9503:0xecbb2f86d7f28f34",
"data_cid": "-1388463803918545100",
"reviews_link": "https://api.scrapingdog.com/google_maps/reviews?api_key=APIKEY&data_id=0x89c259af577b9503:0xecbb2f86d7f28f34",
"photos_link": "https://api.scrapingdog.com/google_maps/photos?api_key=APIKEY&data_id=0x89c259af577b9503:0xecbb2f86d7f28f34",
"posts_link": "https://api.scrapingdog.com/google_maps/posts?api_key=APIKEY&data_id=0x89c259af577b9503:0xecbb2f86d7f28f34",
"gps_coordinates": {
"latitude": 40.7462091,
"longitude": -73.9895129
},
"provider_id": "/g/11f122y370",
"rating": 4.2,
"reviews": 560,
"price": "$1–10",
"type": "Coffee shop",
"types": [
"Coffee shop"
],
"address": "44 W 29th St New York, NY 10001",
"open_state": "Open ⋅ Closes 6 PM",
"hours": "Open ⋅ Closes 6 PM",
"operating_hours": {
"monday": "7 AM–6 PM",
"tuesday": "7 AM–6 PM",
"wednesday": "7 AM–6 PM",
"thursday": "7 AM–6 PM",
"friday": "7 AM–6 PM",
"saturday": "7 AM–6 PM",
"sunday": "7 AM–6 PM"
},
"phone": "(212) 213-4429",
"website": "https://www.madehotels.com/eat-drink",
"description": "Relaxed hotel coffee shop Hotel gathering spot featuring coffee, espresso, and baked goods amid a cozy, laid-back vibe.",
"thumbnail": "https://lh5.googleusercontent.com/p/AF1QipMvyLNBDmc1Zb-WllWN-1YxhFa9JLdhQsyuQN4V=w86-h114-k-no"
},
{
"title": "Variety Coffee Roasters",
"place_id": "ChIJ49KnM6VZwokRArJkBByO0Dc",
"data_id": "0x89c259a533a7d2e3:0x37d08e1c0464b202",
"data_cid": "4021870718225789442",
"reviews_link": "https://api.scrapingdog.com/google_maps/reviews?api_key=APIKEY&data_id=0x89c259a533a7d2e3:0x37d08e1c0464b202",
"photos_link": "https://api.scrapingdog.com/google_maps/photos?api_key=APIKEY&data_id=0x89c259a533a7d2e3:0x37d08e1c0464b202",
"posts_link": "https://api.scrapingdog.com/google_maps/posts?api_key=APIKEY&data_id=0x89c259a533a7d2e3:0x37d08e1c0464b202",
"gps_coordinates": {
"latitude": 40.745199,
"longitude": -73.99456169999999
},
"provider_id": "/g/11c6cd32m5",
"rating": 4.4,
"reviews": 814,
"price": "$1–10",
"type": "Coffee shop",
"types": [
"Coffee shop"
],
"address": "261 7th Ave New York, NY 10001",
"open_state": "Open ⋅ Closes 9 PM",
"hours": "Open ⋅ Closes 9 PM",
"operating_hours": {
"monday": "7 AM–9 PM",
"tuesday": "7 AM–9 PM",
"wednesday": "7 AM–9 PM",
"thursday": "7 AM–9 PM",
"friday": "7 AM–9 PM",
"saturday": "7 AM–9 PM",
"sunday": "7 AM–9 PM"
},
"phone": "(917) 409-0106",
"thumbnail": "https://lh5.googleusercontent.com/p/AF1QipP6JFMPunGxRcQTwrWPDB3jRGNF_OwwooUMrfk_=w86-h127-k-no"
},
{
"title": "Seven Grams Caffe",
"place_id": "ChIJqXTjSaVZwokREUBBnhV2hbI",
"data_id": "0x89c259a549e374a9:0xb28576159e414011",
"data_cid": "-5582926327834394607",
"reviews_link": "https://api.scrapingdog.com/google_maps/reviews?api_key=APIKEY&data_id=0x89c259a549e374a9:0xb28576159e414011",
"photos_link": "https://api.scrapingdog.com/google_maps/photos?api_key=APIKEY&data_id=0x89c259a549e374a9:0xb28576159e414011",
"posts_link": "https://api.scrapingdog.com/google_maps/posts?api_key=APIKEY&data_id=0x89c259a549e374a9:0xb28576159e414011",
"gps_coordinates": {
"latitude": 40.745613399999996,
"longitude": -73.9941716
},
"provider_id": "/g/11b6d7sh8t",
"rating": 4.4,
"reviews": 722,
"price": "$1–10",
"type": "Coffee shop",
"types": [
"Coffee shop",
"Bakery"
],
"address": "275 7th Ave New York, NY 10001",
"open_state": "Open ⋅ Closes 7 PM",
"hours": "Open ⋅ Closes 7 PM",
"operating_hours": {
"monday": "7:45 AM–7 PM",
"tuesday": "7 AM–7 PM",
"wednesday": "7 AM–7 PM",
"thursday": "7 AM–7 PM",
"friday": "7 AM–7 PM",
"saturday": "7 AM–7 PM",
"sunday": "7:45 AM–7 PM"
},
"phone": "(646) 368-1858",
"description": "Coffee and pastries in chic digs Gourmet espresso drinks, sweet and savory pastries, and free Wi-Fi in a stylish, minimalist space.",
"thumbnail": "https://lh5.googleusercontent.com/p/AF1QipPRw0JgQFNYwUSvXc6w1qtlJ54Y48XANhRiUsMH=w129-h86-k-no"
},
{
"title": "Starbucks Reserve Roastery New York",
"place_id": "ChIJIQDZbb9ZwokRNRez4RviXGQ",
"data_id": "0x89c259bf6dd90021:0x645ce21be1b31735",
"data_cid": "7231903711028778805",
"reviews_link": "https://api.scrapingdog.com/google_maps/reviews?api_key=APIKEY&data_id=0x89c259bf6dd90021:0x645ce21be1b31735",
"photos_link": "https://api.scrapingdog.com/google_maps/photos?api_key=APIKEY&data_id=0x89c259bf6dd90021:0x645ce21be1b31735",
"posts_link": "https://api.scrapingdog.com/google_maps/posts?api_key=APIKEY&data_id=0x89c259bf6dd90021:0x645ce21be1b31735",
"gps_coordinates": {
"latitude": 40.7415944,
"longitude": -74.0051549
},
"provider_id": "/g/11j7w8j09h",
"rating": 4.3,
"reviews": 4954,
"price": "$10–20",
"type": "Coffee shop",
"types": [
"Coffee shop",
"Bakery",
"Cafe",
"Cocktail bar",
"Coffee roasters",
"Tourist attraction"
],
"address": "61 9th Ave New York, NY 10011",
"open_state": "Open ⋅ Closes 10 PM",
"hours": "Open ⋅ Closes 10 PM",
"operating_hours": {
"monday": "8 AM–10 PM",
"tuesday": "8 AM–10 PM",
"wednesday": "8 AM–10 PM",
"thursday": "8 AM–10 PM",
"friday": "8 AM–10 PM",
"saturday": "8 AM–11 PM",
"sunday": "8 AM–11 PM"
},
"phone": "(212) 691-0531",
"website": "https://www.starbucksreserve.com/locations/new-york-roastery",
"thumbnail": "https://lh5.googleusercontent.com/p/AF1QipNzE5YpsiXTxRn6CaSYsRvoAWXYTbdD3Di8PNGk=w152-h86-k-no"
},
{
"title": "Think Coffee",
"place_id": "ChIJS-gkDZBZwokRTU47k4eihtE",
"data_id": "0x89c259900d24e84b:0xd186a287933b4e4d",
"data_cid": "-3348810569728962995",
"reviews_link": "https://api.scrapingdog.com/google_maps/reviews?api_key=APIKEY&data_id=0x89c259900d24e84b:0xd186a287933b4e4d",
"photos_link": "https://api.scrapingdog.com/google_maps/photos?api_key=APIKEY&data_id=0x89c259900d24e84b:0xd186a287933b4e4d",
"posts_link": "https://api.scrapingdog.com/google_maps/posts?api_key=APIKEY&data_id=0x89c259900d24e84b:0xd186a287933b4e4d",
"gps_coordinates": {
"latitude": 40.7395006,
"longitude": -74.0029454
},
"provider_id": "/g/1hc274rrz",
"rating": 4.2,
"reviews": 909,
"price": "$1–10",
"type": "Coffee shop",
"types": [
"Coffee shop",
"Cafe",
"Dessert shop",
"Sandwich shop",
"Wi-Fi spot"
],
"address": "73 8th Ave New York, NY 10014",
"open_state": "Open ⋅ Closes 6 PM",
"hours": "Open ⋅ Closes 6 PM",
"operating_hours": {
"monday": "8 AM–6 PM",
"tuesday": "7 AM–6 PM",
"wednesday": "7 AM–6 PM",
"thursday": "7 AM–6 PM",
"friday": "7 AM–6 PM",
"saturday": "7 AM–6 PM",
"sunday": "8 AM–6 PM"
},
"description": "Popular fair-trade coffeehouse Fair-trade organic coffee, sandwiches & baked goods served in a laid-back setting.",
"thumbnail": "https://lh5.googleusercontent.com/p/AF1QipPDaJ517ohaaSA5rDXx74FTtTfBjz_jNS8T8WEd=w86-h114-k-no"
},
{
"title": "Culture Espresso",
"place_id": "ChIJi7UFIq1ZwokRRlDLoi1RxRY",
"data_id": "0x89c259ad2205b58b:0x16c5512da2cb5046",
"data_cid": "1640806895693025350",
"reviews_link": "https://api.scrapingdog.com/google_maps/reviews?api_key=APIKEY&data_id=0x89c259ad2205b58b:0x16c5512da2cb5046",
"photos_link": "https://api.scrapingdog.com/google_maps/photos?api_key=APIKEY&data_id=0x89c259ad2205b58b:0x16c5512da2cb5046",
"posts_link": "https://api.scrapingdog.com/google_maps/posts?api_key=APIKEY&data_id=0x89c259ad2205b58b:0x16c5512da2cb5046",
"gps_coordinates": {
"latitude": 40.7550658,
"longitude": -73.9921635
},
"provider_id": "/g/11c6lcy8vg",
"rating": 4.6,
"reviews": 379,
"price": "$1–10",
"type": "Coffee shop",
"types": [
"Coffee shop"
],
"address": "307 W 38th St New York, NY 10018",
"open_state": "Open ⋅ Closes 7 PM",
"hours": "Open ⋅ Closes 7 PM",
"operating_hours": {
"monday": "8 AM–7 PM",
"tuesday": "7 AM–7 PM",
"wednesday": "7 AM–7 PM",
"thursday": "7 AM–7 PM",
"friday": "7 AM–7 PM",
"saturday": "7 AM–7 PM",
"sunday": "8 AM–7 PM"
},
"phone": "(646) 864-1963",
"description": "Espresso and pastries in a sleek setting Bright, lofty espresso bar serving inventive coffee drinks, cookies, and pastries",
"thumbnail": "https://lh5.googleusercontent.com/p/AF1QipMbmskRbUaAyPDKbA2jFZ80C-qFSSiyVf8MerKZ=w86-h114-k-no"
},
{
"title": "bwè kafe",
"place_id": "ChIJORjF-9hZwokRNWeyK9oKXD4",
"data_id": "0x89c259d8fbc51839:0x3e5c0ada2bb26735",
"data_cid": "4493478460361172789",
"reviews_link": "https://api.scrapingdog.com/google_maps/reviews?api_key=APIKEY&data_id=0x89c259d8fbc51839:0x3e5c0ada2bb26735",
"photos_link": "https://api.scrapingdog.com/google_maps/photos?api_key=APIKEY&data_id=0x89c259d8fbc51839:0x3e5c0ada2bb26735",
"posts_link": "https://api.scrapingdog.com/google_maps/posts?api_key=APIKEY&data_id=0x89c259d8fbc51839:0x3e5c0ada2bb26735",
"gps_coordinates": {
"latitude": 40.7487777,
"longitude": -74.0277306
},
"provider_id": "/g/124ymzb8k",
"rating": 4.6,
"reviews": 486,
"price": "$1–10",
"type": "Coffee shop",
"types": [
"Coffee shop",
"Cafe",
"Event venue",
"Tea house",
"Wi-Fi spot"
],
"address": "1002 Washington St Hoboken, NJ 07030",
"open_state": "Open ⋅ Closes 5 PM",
"hours": "Open ⋅ Closes 5 PM",
"operating_hours": {
"monday": "8 AM–5 PM",
"tuesday": "7 AM–5 PM",
"wednesday": "7 AM–5 PM",
"thursday": "7 AM–5 PM",
"friday": "7 AM–5 PM",
"saturday": "7 AM–5 PM",
"sunday": "8 AM–5 PM"
},
"phone": "(201) 683-0045",
"description": "Hip coffee shop with a homey vibe Relaxed, ethical-trade coffee shop that donates a portion of its proceeds to Haiti relief efforts.",
"thumbnail": "https://lh5.googleusercontent.com/p/AF1QipOgXS7Om_rlY7mF5YPrsJ82U-CcxAs5w5yFWlSH=w86-h114-k-no"
},
{
"title": "Gregorys Coffee",
"place_id": "ChIJY6q6vqxZwokR3X1qxq3EWkU",
"data_id": "0x89c259acbebaaa63:0x455ac4adc66a7ddd",
"data_cid": "4997522987158240733",
"reviews_link": "https://api.scrapingdog.com/google_maps/reviews?api_key=APIKEY&data_id=0x89c259acbebaaa63:0x455ac4adc66a7ddd",
"photos_link": "https://api.scrapingdog.com/google_maps/photos?api_key=APIKEY&data_id=0x89c259acbebaaa63:0x455ac4adc66a7ddd",
"posts_link": "https://api.scrapingdog.com/google_maps/posts?api_key=APIKEY&data_id=0x89c259acbebaaa63:0x455ac4adc66a7ddd",
"gps_coordinates": {
"latitude": 40.745008999999996,
"longitude": -73.9915697
},
"provider_id": "/g/11j4njk214",
"rating": 4.1,
"reviews": 288,
"price": "$$",
"type": "Coffee shop",
"types": [
"Coffee shop"
],
"address": "775 6th Ave New York, NY 10001",
"open_state": "Open ⋅ Closes 7 PM",
"hours": "Open ⋅ Closes 7 PM",
"operating_hours": {
"monday": "7 AM–7 PM",
"tuesday": "6:30 AM–7 PM",
"wednesday": "6:30 AM–7 PM",
"thursday": "6:30 AM–7 PM",
"friday": "6:30 AM–7 PM",
"saturday": "6:30 AM–7 PM",
"sunday": "7 AM–7 PM"
},
"phone": "(877) 216-1724",
"website": "https://www.gregoryscoffee.com/",
"thumbnail": "https://lh5.googleusercontent.com/p/AF1QipN5jxsP9A_XCPI_26LMSOUwFEWJhrNIAMyrsXfz=w152-h86-k-no"
},
{
"title": "Le Cafe Coffee",
"place_id": "ChIJkXKOZZhZwokRN_djxuoBfQM",
"data_id": "0x89c25998658e7291:0x37d01eac663f737",
"data_cid": "251359262065030967",
"reviews_link": "https://api.scrapingdog.com/google_maps/reviews?api_key=APIKEY&data_id=0x89c25998658e7291:0x37d01eac663f737",
"photos_link": "https://api.scrapingdog.com/google_maps/photos?api_key=APIKEY&data_id=0x89c25998658e7291:0x37d01eac663f737",
"posts_link": "https://api.scrapingdog.com/google_maps/posts?api_key=APIKEY&data_id=0x89c25998658e7291:0x37d01eac663f737",
"gps_coordinates": {
"latitude": 40.7357843,
"longitude": -73.9927257
},
"provider_id": "/g/1q67wjyc6",
"rating": 4.4,
"reviews": 243,
"price": "$1–10",
"type": "Coffee shop",
"types": [
"Coffee shop",
"Cafe"
],
"address": "7 E 14th St New York, NY 10003",
"open_state": "Open ⋅ Closes 6 PM",
"hours": "Open ⋅ Closes 6 PM",
"operating_hours": {
"monday": "8 AM–6 PM",
"tuesday": "7 AM–7 PM",
"wednesday": "7 AM–7 PM",
"thursday": "7 AM–7 PM",
"friday": "7 AM–7 PM",
"saturday": "7 AM–7 PM",
"sunday": "8 AM–6 PM"
},
"phone": "(212) 365-1060",
"description": "Cozy spot known for its latte art Quaint coffee bar popular for latte art and seasonal drinks, also offers pastries and sandwiches.",
"thumbnail": "https://lh5.googleusercontent.com/p/AF1QipO4ZZjR0ZfgL-gkgwkitEGG1DehuW7K96hSOol9=w86-h114-k-no"
},
{
"title": "Starbucks",
"place_id": "ChIJpU_RVK5ZwokRmAtTNwJNDyQ",
"data_id": "0x89c259ae54d14fa5:0x240f4d0237530b98",
"data_cid": "2598380181929528216",
"reviews_link": "https://api.scrapingdog.com/google_maps/reviews?api_key=APIKEY&data_id=0x89c259ae54d14fa5:0x240f4d0237530b98",
"photos_link": "https://api.scrapingdog.com/google_maps/photos?api_key=APIKEY&data_id=0x89c259ae54d14fa5:0x240f4d0237530b98",
"posts_link": "https://api.scrapingdog.com/google_maps/posts?api_key=APIKEY&data_id=0x89c259ae54d14fa5:0x240f4d0237530b98",
"gps_coordinates": {
"latitude": 40.7489883,
"longitude": -73.9923637
},
"provider_id": "/g/1tff8jht",
"rating": 4.2,
"reviews": 945,
"price": "$1–10",
"type": "Coffee shop",
"types": [
"Coffee shop",
"Breakfast restaurant",
"Cafe",
"Coffee store",
"Espresso bar",
"Internet cafe"
],
"address": "370 7th Ave New York, NY 10001",
"open_state": "Open ⋅ Closes 7:30 PM",
"hours": "Open ⋅ Closes 7:30 PM",
"operating_hours": {
"monday": "5:30 AM–7:30 PM",
"tuesday": "5 AM–9 PM",
"wednesday": "5 AM–9 PM",
"thursday": "5 AM–9 PM",
"friday": "5 AM–9 PM",
"saturday": "5 AM–9 PM",
"sunday": "5 AM–9 PM"
},
"phone": "(212) 967-2041",
"website": "https://www.starbucks.com/store-locator/store/11599/",
"description": "Iconic Seattle-based coffeehouse chain Seattle-based coffeehouse chain known for its signature roasts, light bites and WiFi availability.",
"thumbnail": "https://lh5.googleusercontent.com/p/AF1QipOKhSScCftO9OTEh1G3JMw5RWtTvVBnuSQFK9R5=w86-h114-k-no"
},
{
"title": "Corvo Coffee",
"place_id": "ChIJ238atlJYwokRw-vofQS_qow",
"data_id": "0x89c25852b61a7fdb:0x8caabf047de8ebc3",
"data_cid": "-8310620136345637949",
"reviews_link": "https://api.scrapingdog.com/google_maps/reviews?api_key=APIKEY&data_id=0x89c25852b61a7fdb:0x8caabf047de8ebc3",
"photos_link": "https://api.scrapingdog.com/google_maps/photos?api_key=APIKEY&data_id=0x89c25852b61a7fdb:0x8caabf047de8ebc3",
"posts_link": "https://api.scrapingdog.com/google_maps/posts?api_key=APIKEY&data_id=0x89c25852b61a7fdb:0x8caabf047de8ebc3",
"gps_coordinates": {
"latitude": 40.7569714,
"longitude": -73.9933947
},
"provider_id": "/g/11c56dyxfd",
"rating": 4.3,
"reviews": 349,
"price": "$1–10",
"type": "Coffee shop",
"types": [
"Coffee shop"
],
"address": "542 9th Ave New York, NY 10018",
"open_state": "Open ⋅ Closes 7 PM",
"hours": "Open ⋅ Closes 7 PM",
"operating_hours": {
"monday": "6:30 AM–7 PM",
"tuesday": "6:30 AM–7 PM",
"wednesday": "6:30 AM–7 PM",
"thursday": "6:30 AM–7 PM",
"friday": "6:30 AM–7 PM",
"saturday": "6:30 AM–7 PM",
"sunday": "6:30 AM–7 PM"
},
"description": "Cafe for espresso drinks, baked goods, and breakfast Cozy cafe with limited seating, serving espresso drinks, baked goods, and sandwiches.",
"thumbnail": "https://lh5.googleusercontent.com/p/AF1QipNqUYsx8FjBGM6ZMom0QXNtqjrwAcaB_0peBeLM=w86-h114-k-no"
},
{
"title": "Telegraphe Cafe.",
"place_id": "ChIJaXRy0LxZwokR6F4F4MRYoQA",
"data_id": "0x89c259bcd0727469:0xa158c4e0055ee8",
"data_cid": "45415073845698280",
"reviews_link": "https://api.scrapingdog.com/google_maps/reviews?api_key=APIKEY&data_id=0x89c259bcd0727469:0xa158c4e0055ee8",
"photos_link": "https://api.scrapingdog.com/google_maps/photos?api_key=APIKEY&data_id=0x89c259bcd0727469:0xa158c4e0055ee8",
"posts_link": "https://api.scrapingdog.com/google_maps/posts?api_key=APIKEY&data_id=0x89c259bcd0727469:0xa158c4e0055ee8",
"gps_coordinates": {
"latitude": 40.7401701,
"longitude": -73.9955183
},
"provider_id": "/g/1tsyl2zt",
"rating": 4.6,
"reviews": 465,
"price": "$10–20",
"type": "Espresso bar",
"types": [
"Espresso bar",
"Breakfast restaurant",
"Cafe",
"Salad shop",
"Sandwich shop",
"Soup shop"
],
"address": "107 W 18th St New York, NY 10011",
"open_state": "Open ⋅ Closes 6 PM",
"hours": "Open ⋅ Closes 6 PM",
"operating_hours": {
"monday": "9:30 AM–6 PM",
"tuesday": "7:30 AM–6:30 PM",
"wednesday": "7:30 AM–6:30 PM",
"thursday": "7:30 AM–6:30 PM",
"friday": "7:30 AM–6:30 PM",
"saturday": "7:30 AM–6 PM",
"sunday": "9:30 AM–6 PM"
},
"phone": "(212) 488-5810",
"description": "Coffee shop with an upmarket food menu Compact, modern espresso bar serving French-influenced breakfast bites, gourmet sandwiches & salads.",
"thumbnail": "https://lh5.googleusercontent.com/p/AF1QipOo2aX4v1ceejsKRI05F2J0kkD0AXY1MKqYRH8=w86-h114-k-no"
},
{
"title": "Kobrick Coffee Co.",
"place_id": "ChIJB9FFib9ZwokRPzsGaqjCnoo",
"data_id": "0x89c259bf8945d107:0x8a9ec2a86a063b3f",
"data_cid": "-8458109021566125249",
"reviews_link": "https://api.scrapingdog.com/google_maps/reviews?api_key=APIKEY&data_id=0x89c259bf8945d107:0x8a9ec2a86a063b3f",
"photos_link": "https://api.scrapingdog.com/google_maps/photos?api_key=APIKEY&data_id=0x89c259bf8945d107:0x8a9ec2a86a063b3f",
"posts_link": "https://api.scrapingdog.com/google_maps/posts?api_key=APIKEY&data_id=0x89c259bf8945d107:0x8a9ec2a86a063b3f",
"gps_coordinates": {
"latitude": 40.740273099999996,
"longitude": -74.0055792
},
"provider_id": "/g/11bw6zj1cz",
"rating": 4.3,
"reviews": 1349,
"price": "$1–10",
"type": "Coffee shop",
"types": [
"Coffee shop",
"Cafe",
"Cocktail bar"
],
"address": "24 9th Ave New York, NY 10014",
"open_state": "Open ⋅ Closes 8 PM",
"hours": "Open ⋅ Closes 8 PM",
"operating_hours": {
"monday": "8 AM–8 PM",
"tuesday": "7 AM–8 PM",
"wednesday": "7 AM–8 PM",
"thursday": "7 AM–8 PM",
"friday": "7 AM–8 PM",
"saturday": "7 AM–8 PM",
"sunday": "8 AM–8 PM"
},
"phone": "(212) 255-5588",
"website": "https://www.kobricks.com/",
"description": "Light fare in vintage digs with a patio Chill, vintage-style spot with a patio for coffee, craft cocktails, and gourmet light bites.",
"thumbnail": "https://lh5.googleusercontent.com/p/AF1QipOF6vdseXhhovk_UwJuYEvXKFr-rCELPqWBRD8N=w114-h86-k-no"
},
{
"title": "Café Grumpy - Fashion District",
"place_id": "ChIJmzE1Y6tZwokRQLY6pr6tTDk",
"data_id": "0x89c259ab6335319b:0x394cadbea63ab640",
"data_cid": "4128865992736159296",
"reviews_link": "https://api.scrapingdog.com/google_maps/reviews?api_key=APIKEY&data_id=0x89c259ab6335319b:0x394cadbea63ab640",
"photos_link": "https://api.scrapingdog.com/google_maps/photos?api_key=APIKEY&data_id=0x89c259ab6335319b:0x394cadbea63ab640",
"posts_link": "https://api.scrapingdog.com/google_maps/posts?api_key=APIKEY&data_id=0x89c259ab6335319b:0x394cadbea63ab640",
"gps_coordinates": {
"latitude": 40.754188899999995,
"longitude": -73.9888567
},
"provider_id": "/g/1jmcm19ws",
"rating": 4.3,
"reviews": 656,
"price": "$1–10",
"type": "Coffee shop",
"types": [
"Coffee shop",
"Cafe",
"Espresso bar"
],
"address": "200 W 39th St New York, NY 10018",
"open_state": "Closes soon ⋅ 4 PM ⋅ Opens 7 AM Mon",
"hours": "Closes soon ⋅ 4 PM ⋅ Opens 7 AM Mon",
"operating_hours": {
"monday": "9 AM–4 PM",
"tuesday": "7 AM–5 PM",
"wednesday": "7 AM–5 PM",
"thursday": "7 AM–5 PM",
"friday": "7 AM–5 PM",
"saturday": "7 AM–5 PM",
"sunday": "9 AM–4 PM"
},
"phone": "(646) 449-8747",
"description": "Hip spot for house-roasted coffee Hip local coffeehouse chain serving house-roasted specialty brews in a relaxed setting.",
"thumbnail": "https://lh5.googleusercontent.com/p/AF1QipMmI3vnuhE2Wj8RHGl8OtoAKbHgRufik38QU9Fh=w86-h114-k-no"
},
{
"title": "Starbucks",
"place_id": "ChIJTaean6RZwokRySirHzfCIbs",
"data_id": "0x89c259a49f9aa74d:0xbb21c2371fab28c9",
"data_cid": "-4962471772375275319",
"reviews_link": "https://api.scrapingdog.com/google_maps/reviews?api_key=APIKEY&data_id=0x89c259a49f9aa74d:0xbb21c2371fab28c9",
"photos_link": "https://api.scrapingdog.com/google_maps/photos?api_key=APIKEY&data_id=0x89c259a49f9aa74d:0xbb21c2371fab28c9",
"posts_link": "https://api.scrapingdog.com/google_maps/posts?api_key=APIKEY&data_id=0x89c259a49f9aa74d:0xbb21c2371fab28c9",
"gps_coordinates": {
"latitude": 40.7418334,
"longitude": -73.99326429999999
},
"provider_id": "/g/1tdq212d",
"rating": 4.1,
"reviews": 357,
"price": "$1–10",
"type": "Coffee shop",
"types": [
"Coffee shop",
"Breakfast restaurant",
"Cafe",
"Coffee store",
"Espresso bar",
"Internet cafe"
],
"address": "684 6th Ave New York, NY 10010",
"open_state": "Open ⋅ Closes 8 PM",
"hours": "Open ⋅ Closes 8 PM",
"operating_hours": {
"monday": "6:30 AM–8 PM",
"tuesday": "5:30 AM–8:30 PM",
"wednesday": "5:30 AM–8:30 PM",
"thursday": "5:30 AM–8:30 PM",
"friday": "5:30 AM–8:30 PM",
"saturday": "5:30 AM–8:30 PM",
"sunday": "6:30 AM–8:30 PM"
},
"phone": "(212) 691-1948",
"website": "https://www.starbucks.com/store-locator/store/16731/",
"description": "Iconic Seattle-based coffeehouse chain Seattle-based coffeehouse chain known for its signature roasts, light bites and WiFi availability.",
"thumbnail": "https://lh5.googleusercontent.com/p/AF1QipNPDtIWjep42rAhRhDpC4jzUG9LMotohtwxk8I=w86-h152-k-no"
},
{
"title": "11th Street Cafe",
"place_id": "ChIJU3IVO-tZwokRx6iWrhKQTng",
"data_id": "0x89c259eb3b157253:0x784e9012ae96a8c7",
"data_cid": "8669024742647703751",
"reviews_link": "https://api.scrapingdog.com/google_maps/reviews?api_key=APIKEY&data_id=0x89c259eb3b157253:0x784e9012ae96a8c7",
"photos_link": "https://api.scrapingdog.com/google_maps/photos?api_key=APIKEY&data_id=0x89c259eb3b157253:0x784e9012ae96a8c7",
"posts_link": "https://api.scrapingdog.com/google_maps/posts?api_key=APIKEY&data_id=0x89c259eb3b157253:0x784e9012ae96a8c7",
"gps_coordinates": {
"latitude": 40.7357544,
"longitude": -74.0075135
},
"provider_id": "/g/1tf29ltw",
"rating": 4.5,
"reviews": 280,
"price": "$10–20",
"type": "Coffee shop",
"types": [
"Coffee shop",
"Bagel shop",
"Breakfast restaurant",
"Brunch restaurant",
"Cafe",
"Espresso bar",
"Lunch restaurant",
"Sandwich shop"
],
"address": "327 W 11th St New York, NY 10014",
"open_state": "Closes soon ⋅ 4 PM ⋅ Opens 7 AM Mon",
"hours": "Closes soon ⋅ 4 PM ⋅ Opens 7 AM Mon",
"operating_hours": {
"monday": "7:30 AM–4 PM",
"tuesday": "7 AM–4 PM",
"wednesday": "7 AM–4 PM",
"thursday": "7 AM–4 PM",
"friday": "7 AM–4 PM",
"saturday": "7 AM–4 PM",
"sunday": "7:30 AM–4 PM"
},
"phone": "(646) 692-4455",
"website": "https://www.11thstcafe.com/",
"description": "Laptop-friendly coffee shop Small eatery with a menu of breakfast & lunch sandwiches, salads, coffee, wine & free WiFi.",
"thumbnail": "https://lh3.googleusercontent.com/gps-proxy/ALd4DhFlVtelmZYKuNUViGdSMxZX8DoGgpXggj6qIkhhGpzcihi8ebilS3oYWUY6IPm_-D1JPqv3SKOJf6-vI12kumn7ZEnrRWFlyD56nZXkV6vrMhdMssgt8_EhYgFkeRbJjdnIZPd71sHGmxWEh_4vVHmv_Qj9kYAO1drS7XWCnTqdNsJjIXXU1rqocQ=w152-h86-k-no"
}
]
}
Video Tutorial
Last updated