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
Parameter | Description |
---|---|
api_key required | Your personal API key. Available on your dashboard Type: String |
ll required | 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
Type: |
query required | This is a Google Search Query.
Example1 - |
page | This is the page number of Google searches. Its value can be 0 for the first page, 1 for the second page, and so on. Default Value - |
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:
Default: |
language | Language of the results. Possible Values - |
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": "Gregorys Coffee",
"place_id": "ChIJQTNrM69ZwokR3ggxzgeelqQ",
"data_id": "0x89c259af336b3341:0xa4969e07ce3108de",
"data_cid": "-6586903648621492002",
"reviews_link": "https://api.serpdog.io/reviews?api_key=APIKEY&data_id=0x89c259af336b3341:0xa4969e07ce3108de",
"photos_link": "https://api.serpdog.io/maps_photos?api_key=APIKEY&data_id=0x89c259af336b3341:0xa4969e07ce3108de",
"posts_link": "https://api.serpdog.io/maps_post?api_key=APIKEY&data_id=0x89c259af336b3341:0xa4969e07ce3108de",
"gps_coordinates": {
"latitude": 40.7477283,
"longitude": -73.9890454
},
"provider_id": "/g/11xdfwq9f",
"rating": 4.1,
"reviews": 1153,
"price": "££",
"type": "Coffee shop",
"types": [
"Coffee shop"
],
"address": "874 6th Ave New York, NY 10001 United States",
"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": "7 am–7 pm",
"sunday": "7 am–7 pm"
},
"phone": "+1 877-231-7619",
"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/AF1QipNq-8YRdAjiVW7uFMWDzHarqoK2Pr7bxIqI7t8A=w86-h114-k-no"
},
{
"title": "Paper Coffee",
"place_id": "ChIJA5V7V69ZwokRNI_y14Yvu-w",
"data_id": "0x89c259af577b9503:0xecbb2f86d7f28f34",
"data_cid": "-1388463803918545100",
"reviews_link": "https://api.serpdog.io/reviews?api_key=APIKEY&data_id=0x89c259af577b9503:0xecbb2f86d7f28f34",
"photos_link": "https://api.serpdog.io/maps_photos?api_key=APIKEY&data_id=0x89c259af577b9503:0xecbb2f86d7f28f34",
"posts_link": "https://api.serpdog.io/maps_post?api_key=APIKEY&data_id=0x89c259af577b9503:0xecbb2f86d7f28f34",
"gps_coordinates": {
"latitude": 40.7462091,
"longitude": -73.9895129
},
"provider_id": "/g/11f122y370",
"type": "Coffee shop",
"types": [
"Coffee shop"
],
"address": "44 W 29th St New York, NY 10001 United States",
"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": "+1 212-213-4429",
"website": "https://www.madehotels.com/eat-drink",
"description": "Relaxed hotel coffee shop Hotel gathering spot featuring coffee, espresso & baked goods amid a cozy, laid-back vibe.",
"thumbnail": "https://lh5.googleusercontent.com/p/AF1QipMvyLNBDmc1Zb-WllWN-1YxhFa9JLdhQsyuQN4V=w86-h114-k-no"
},
{
"title": "Think Coffee",
"place_id": "ChIJdQpAR71ZwokRkeF531Jk8_Q",
"data_id": "0x89c259bd47400a75:0xf4f36452df79e191",
"data_cid": "-796182402015043183",
"reviews_link": "https://api.serpdog.io/reviews?api_key=APIKEY&data_id=0x89c259bd47400a75:0xf4f36452df79e191",
"photos_link": "https://api.serpdog.io/maps_photos?api_key=APIKEY&data_id=0x89c259bd47400a75:0xf4f36452df79e191",
"posts_link": "https://api.serpdog.io/maps_post?api_key=APIKEY&data_id=0x89c259bd47400a75:0xf4f36452df79e191",
"gps_coordinates": {
"latitude": 40.738425,
"longitude": -73.9958111
},
"provider_id": "/g/1q69ngfqz",
"rating": 4,
"reviews": 419,
"price": "£",
"type": "Coffee shop",
"types": [
"Coffee shop",
"Cafe",
"Dessert shop",
"Sandwich shop"
],
"address": "568 6th Ave New York, NY 10011 United States",
"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": "8 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/AF1QipMuZBqLewaC2qTgJzlqfGzltvmPc-evWY8LMzVo=w86-h114-k-no"
},
{
"title": "Corvo Coffee",
"place_id": "ChIJ238atlJYwokRw-vofQS_qow",
"data_id": "0x89c25852b61a7fdb:0x8caabf047de8ebc3",
"data_cid": "-8310620136345637949",
"reviews_link": "https://api.serpdog.io/reviews?api_key=APIKEY&data_id=0x89c25852b61a7fdb:0x8caabf047de8ebc3",
"photos_link": "https://api.serpdog.io/maps_photos?api_key=APIKEY&data_id=0x89c25852b61a7fdb:0x8caabf047de8ebc3",
"posts_link": "https://api.serpdog.io/maps_post?api_key=APIKEY&data_id=0x89c25852b61a7fdb:0x8caabf047de8ebc3",
"gps_coordinates": {
"latitude": 40.7569714,
"longitude": -73.9933947
},
"provider_id": "/g/11c56dyxfd",
"rating": 4.4,
"reviews": 306,
"price": "£",
"type": "Coffee shop",
"types": [
"Coffee shop"
],
"address": "542 9th Ave New York, NY 10018 United States",
"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": "Nook for espresso drinks & baked goods Offering limited seating, this cozy cafe serves espresso drinks, baked goods & sandwiches.",
"thumbnail": "https://lh5.googleusercontent.com/p/AF1QipNqUYsx8FjBGM6ZMom0QXNtqjrwAcaB_0peBeLM=w86-h114-k-no"
},
{
"title": "Variety Coffee Roasters",
"place_id": "ChIJ49KnM6VZwokRArJkBByO0Dc",
"data_id": "0x89c259a533a7d2e3:0x37d08e1c0464b202",
"data_cid": "4021870718225789442",
"reviews_link": "https://api.serpdog.io/reviews?api_key=APIKEY&data_id=0x89c259a533a7d2e3:0x37d08e1c0464b202",
"photos_link": "https://api.serpdog.io/maps_photos?api_key=APIKEY&data_id=0x89c259a533a7d2e3:0x37d08e1c0464b202",
"posts_link": "https://api.serpdog.io/maps_post?api_key=APIKEY&data_id=0x89c259a533a7d2e3:0x37d08e1c0464b202",
"gps_coordinates": {
"latitude": 40.745199,
"longitude": -73.99456169999999
},
"provider_id": "/g/11c6cd32m5",
"rating": 4.4,
"reviews": 705,
"price": "£",
"type": "Coffee shop",
"types": [
"Coffee shop"
],
"address": "261 7th Ave New York, NY 10001 United States",
"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": "+1 917-409-0106",
"thumbnail": "https://lh5.googleusercontent.com/p/AF1QipNTQzfL1HDARAUX_5lSH0OAjl-19cqei2wJ1QlT=w86-h114-k-no"
},
{
"title": "Joe Coffee Company",
"place_id": "ChIJ0_sftbdZwokR5js23m5CrOo",
"data_id": "0x89c259b7b51ffbd3:0xeaac426ede363be6",
"data_cid": "-1536780328898249754",
"reviews_link": "https://api.serpdog.io/reviews?api_key=APIKEY&data_id=0x89c259b7b51ffbd3:0xeaac426ede363be6",
"photos_link": "https://api.serpdog.io/maps_photos?api_key=APIKEY&data_id=0x89c259b7b51ffbd3:0xeaac426ede363be6",
"posts_link": "https://api.serpdog.io/maps_post?api_key=APIKEY&data_id=0x89c259b7b51ffbd3:0xeaac426ede363be6",
"gps_coordinates": {
"latitude": 40.7365151,
"longitude": -73.9910701
},
"provider_id": "/g/11fqt1jynl",
"rating": 3.9,
"reviews": 73,
"price": "£",
"type": "Coffee shop",
"types": [
"Coffee shop"
],
"address": "29 Union Square W New York, NY 10003 United States",
"open_state": "Open ⋅ Closes 8 pm",
"hours": "Open ⋅ Closes 8 pm",
"operating_hours": {
"monday": "7 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": "7 am–8 pm"
},
"phone": "+1 718-866-1059",
"website": "https://joecoffeecompany.com/",
"description": "Chic cafe featuring house-roasted coffee Coffee spot offering free-trade brews, baked goods, classes & catering in a buzzy modern space.",
"thumbnail": "https://lh5.googleusercontent.com/p/AF1QipPMYw4AyQXUqPOffwNB7M3v0Aajq8MaWH1WwixY=w86-h114-k-no"
},
{
"title": "Gregorys Coffee",
"place_id": "ChIJY6q6vqxZwokR3X1qxq3EWkU",
"data_id": "0x89c259acbebaaa63:0x455ac4adc66a7ddd",
"data_cid": "4997522987158240733",
"reviews_link": "https://api.serpdog.io/reviews?api_key=APIKEY&data_id=0x89c259acbebaaa63:0x455ac4adc66a7ddd",
"photos_link": "https://api.serpdog.io/maps_photos?api_key=APIKEY&data_id=0x89c259acbebaaa63:0x455ac4adc66a7ddd",
"posts_link": "https://api.serpdog.io/maps_post?api_key=APIKEY&data_id=0x89c259acbebaaa63:0x455ac4adc66a7ddd",
"gps_coordinates": {
"latitude": 40.745008999999996,
"longitude": -73.9915697
},
"provider_id": "/g/11j4njk214",
"rating": 4.2,
"reviews": 211,
"price": "££",
"type": "Coffee shop",
"types": [
"Coffee shop"
],
"address": "775 6th Ave New York, NY 10001 United States",
"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": "7 am–7 pm",
"sunday": "7 am–7 pm"
},
"phone": "+1 877-216-1724",
"thumbnail": "https://lh5.googleusercontent.com/p/AF1QipN5jxsP9A_XCPI_26LMSOUwFEWJhrNIAMyrsXfz=w152-h86-k-no"
},
{
"title": "Think Coffee",
"place_id": "ChIJH3MoCspZwokRbK5_rw0-0dM",
"data_id": "0x89c259ca0a28731f:0xd3d13e0daf7fae6c",
"data_cid": "-3183695233074352532",
"reviews_link": "https://api.serpdog.io/reviews?api_key=APIKEY&data_id=0x89c259ca0a28731f:0xd3d13e0daf7fae6c",
"photos_link": "https://api.serpdog.io/maps_photos?api_key=APIKEY&data_id=0x89c259ca0a28731f:0xd3d13e0daf7fae6c",
"posts_link": "https://api.serpdog.io/maps_post?api_key=APIKEY&data_id=0x89c259ca0a28731f:0xd3d13e0daf7fae6c",
"gps_coordinates": {
"latitude": 40.7522222,
"longitude": -74.0016667
},
"provider_id": "/g/11bw66wwr4",
"rating": 3.9,
"reviews": 586,
"price": "££",
"type": "Coffee shop",
"types": [
"Coffee shop"
],
"address": "500 W 30th St New York, NY 10001 United States",
"open_state": "Open ⋅ Closes 7 pm",
"hours": "Open ⋅ Closes 7 pm",
"operating_hours": {
"monday": "7 am–7 pm",
"tuesday": "7 am–7 pm",
"wednesday": "7 am–7 pm",
"thursday": "7 am–7 pm",
"friday": "7 am–7 pm",
"saturday": "8 am–7 pm",
"sunday": "8 am–7 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/AF1QipMIVRZJMr-bnGKw28VTrctmhVYQOnIKBRj0NmnN=w114-h86-k-no"
},
{
"title": "Gregorys Coffee",
"place_id": "ChIJZwFsq61ZwokRCquELy8Q3Gw",
"data_id": "0x89c259adab6c0167:0x6cdc102f2f84ab0a",
"data_cid": "7844162445819292426",
"reviews_link": "https://api.serpdog.io/reviews?api_key=APIKEY&data_id=0x89c259adab6c0167:0x6cdc102f2f84ab0a",
"photos_link": "https://api.serpdog.io/maps_photos?api_key=APIKEY&data_id=0x89c259adab6c0167:0x6cdc102f2f84ab0a",
"posts_link": "https://api.serpdog.io/maps_post?api_key=APIKEY&data_id=0x89c259adab6c0167:0x6cdc102f2f84ab0a",
"gps_coordinates": {
"latitude": 40.753614999999996,
"longitude": -73.9920415
},
"provider_id": "/g/11c3zpd6cm",
"rating": 4.1,
"reviews": 656,
"price": "££",
"type": "Coffee shop",
"types": [
"Coffee shop"
],
"address": "520 8th Ave New York, NY 10018 United States",
"open_state": "Open ⋅ Closes 7 pm",
"hours": "Open ⋅ Closes 7 pm",
"operating_hours": {
"monday": "7 am–7 pm",
"tuesday": "7 am–7 pm",
"wednesday": "7 am–7 pm",
"thursday": "7 am–7 pm",
"friday": "7 am–7 pm",
"saturday": "8 am–7 pm",
"sunday": "8 am–7 pm"
},
"phone": "+1 877-208-1928",
"thumbnail": "https://lh5.googleusercontent.com/p/AF1QipNxyvI-Wuf10w_a0Iy5vFaNJgFE56Tlw3aQ3MHP=w114-h86-k-no"
},
{
"title": "Think Coffee",
"place_id": "ChIJS-gkDZBZwokRTU47k4eihtE",
"data_id": "0x89c259900d24e84b:0xd186a287933b4e4d",
"data_cid": "-3348810569728962995",
"reviews_link": "https://api.serpdog.io/reviews?api_key=APIKEY&data_id=0x89c259900d24e84b:0xd186a287933b4e4d",
"photos_link": "https://api.serpdog.io/maps_photos?api_key=APIKEY&data_id=0x89c259900d24e84b:0xd186a287933b4e4d",
"posts_link": "https://api.serpdog.io/maps_post?api_key=APIKEY&data_id=0x89c259900d24e84b:0xd186a287933b4e4d",
"gps_coordinates": {
"latitude": 40.7395006,
"longitude": -74.0029454
},
"provider_id": "/g/1hc274rrz",
"rating": 4.2,
"reviews": 871,
"price": "£",
"type": "Coffee shop",
"types": [
"Coffee shop",
"Cafe",
"Dessert shop",
"Sandwich shop",
"Wi-Fi spot"
],
"address": "73 8th Ave New York, NY 10014 United States",
"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": "7:30 am–7 pm",
"sunday": "7:30 am–7 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": "Old Country Coffee",
"place_id": "ChIJwYC6qLNZwokRf5Ey3CLRPHo",
"data_id": "0x89c259b3a8ba80c1:0x7a3cd122dc32917f",
"data_cid": "8808144918883242367",
"reviews_link": "https://api.serpdog.io/reviews?api_key=APIKEY&data_id=0x89c259b3a8ba80c1:0x7a3cd122dc32917f",
"photos_link": "https://api.serpdog.io/maps_photos?api_key=APIKEY&data_id=0x89c259b3a8ba80c1:0x7a3cd122dc32917f",
"posts_link": "https://api.serpdog.io/maps_post?api_key=APIKEY&data_id=0x89c259b3a8ba80c1:0x7a3cd122dc32917f",
"gps_coordinates": {
"latitude": 40.754539,
"longitude": -73.99837219999999
},
"provider_id": "/g/11bzq0r5d0",
"rating": 4.4,
"reviews": 698,
"price": "£",
"type": "Coffee shop",
"types": [
"Coffee shop"
],
"address": "455 W 34th St. New York, NY 10001 United States",
"open_state": "Open ⋅ Closes 7 pm",
"hours": "Open ⋅ Closes 7 pm",
"operating_hours": {
"monday": "6 am–7 pm",
"tuesday": "6 am–7 pm",
"wednesday": "6 am–7 pm",
"thursday": "6 am–7 pm",
"friday": "6 am–7 pm",
"saturday": "7 am–7 pm",
"sunday": "7 am–7 pm"
},
"phone": "+1 646-861-2171",
"website": "https://oldcountry.coffee/",
"description": "Espresso & light fare in cozy surrounds Quaint cafe offering espresso drinks, a range of baked goods & light fare in a comfortable setting.",
"thumbnail": "https://lh5.googleusercontent.com/p/AF1QipN7oRqnNCo71YVR4sdo2EBA4yZV8BTWWw32f9u9=w152-h86-k-no"
},
{
"title": "Le Cafe Coffee",
"place_id": "ChIJkXKOZZhZwokRN_djxuoBfQM",
"data_id": "0x89c25998658e7291:0x37d01eac663f737",
"data_cid": "251359262065030967",
"reviews_link": "https://api.serpdog.io/reviews?api_key=APIKEY&data_id=0x89c25998658e7291:0x37d01eac663f737",
"photos_link": "https://api.serpdog.io/maps_photos?api_key=APIKEY&data_id=0x89c25998658e7291:0x37d01eac663f737",
"posts_link": "https://api.serpdog.io/maps_post?api_key=APIKEY&data_id=0x89c25998658e7291:0x37d01eac663f737",
"gps_coordinates": {
"latitude": 40.7357843,
"longitude": -73.9927257
},
"provider_id": "/g/1q67wjyc6",
"rating": 4.4,
"reviews": 230,
"price": "££",
"type": "Coffee shop",
"types": [
"Coffee shop",
"Cafe"
],
"address": "7 E 14th St New York, NY 10003 United States",
"open_state": "Open ⋅ Closes 7 pm",
"hours": "Open ⋅ Closes 7 pm",
"operating_hours": {
"monday": "7 am–7 pm",
"tuesday": "7 am–7 pm",
"wednesday": "7 am–7 pm",
"thursday": "7 am–7 pm",
"friday": "7 am–7 pm",
"saturday": "8 am–6 pm",
"sunday": "8 am–6 pm"
},
"phone": "+1 212-365-1060",
"description": "Cozy spot known for its latte art Known for its latte art & seasonal drinks, this quaint coffee bar also offers pastries & sandwiches.",
"thumbnail": "https://lh5.googleusercontent.com/p/AF1QipPYQMyPpIfroCYn_fB_22Dj3GApCUJY-jH9f4BW=w86-h114-k-no"
},
{
"title": "Ground Central Coffee Company",
"place_id": "ChIJpWWlMXpZwokRRkqlyORSG-A",
"data_id": "0x89c2597a31a565a5:0xe01b52e4c8a54a46",
"data_cid": "-2298152042270209466",
"reviews_link": "https://api.serpdog.io/reviews?api_key=APIKEY&data_id=0x89c2597a31a565a5:0xe01b52e4c8a54a46",
"photos_link": "https://api.serpdog.io/maps_photos?api_key=APIKEY&data_id=0x89c2597a31a565a5:0xe01b52e4c8a54a46",
"posts_link": "https://api.serpdog.io/maps_post?api_key=APIKEY&data_id=0x89c2597a31a565a5:0xe01b52e4c8a54a46",
"gps_coordinates": {
"latitude": 40.7528218,
"longitude": -73.9896601
},
"provider_id": "/g/11np7j4wmw",
"type": "Coffee shop",
"types": [
"Coffee shop",
"Book Shop"
],
"address": "498 7th Ave New York, NY 10018 United States",
"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": "8 am–4 pm",
"sunday": "8 am–4 pm"
},
"phone": "+1 646-682-7478",
"thumbnail": "https://lh5.googleusercontent.com/p/AF1QipPlSJVhSvK7BF8gd5RdujGhBtynO5OzPra7-YTY=w86-h152-k-no"
},
{
"title": "Peet's Coffee",
"place_id": "ChIJG3lW5ZhZwokRbbE3bvRnzb0",
"data_id": "0x89c25998e556791b:0xbdcd67f46e37b16d",
"data_cid": "-4770042130796662419",
"reviews_link": "https://api.serpdog.io/reviews?api_key=APIKEY&data_id=0x89c25998e556791b:0xbdcd67f46e37b16d",
"photos_link": "https://api.serpdog.io/maps_photos?api_key=APIKEY&data_id=0x89c25998e556791b:0xbdcd67f46e37b16d",
"posts_link": "https://api.serpdog.io/maps_post?api_key=APIKEY&data_id=0x89c25998e556791b:0xbdcd67f46e37b16d",
"gps_coordinates": {
"latitude": 40.734704199999996,
"longitude": -73.9910357
},
"provider_id": "/g/11c46b9kj9",
"rating": 4.3,
"reviews": 238,
"price": "£",
"type": "Coffee shop",
"types": [
"Coffee shop",
"Breakfast restaurant",
"Cafe",
"Coffee roasters",
"Coffee store",
"Espresso bar",
"Sandwich shop",
"Tea room"
],
"address": "853 Broadway New York, NY 10003 United States",
"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": "10 am–4 pm",
"sunday": "Closed"
},
"phone": "+1 646-759-4933",
"website": "https://locations.peets.com/ll/US/NY/New-York/853-Broadway",
"description": "Coffeehouse chain also known for its tea Berkeley-born chain featuring signature coffee, tea & blended drinks alongside baked goods.",
"thumbnail": "https://lh5.googleusercontent.com/p/AF1QipNGZY9yFY8iEGSobkCA_xsNtvhH17sUthKCIMkO=w86-h114-k-no"
},
{
"title": "Intelligentsia Coffee High Line Hotel Coffeebar",
"place_id": "ChIJy6rdX7hZwokRYmiVJWN3XmQ",
"data_id": "0x89c259b85fddaacb:0x645e776325956862",
"data_cid": "7232349319319611490",
"reviews_link": "https://api.serpdog.io/reviews?api_key=APIKEY&data_id=0x89c259b85fddaacb:0x645e776325956862",
"photos_link": "https://api.serpdog.io/maps_photos?api_key=APIKEY&data_id=0x89c259b85fddaacb:0x645e776325956862",
"posts_link": "https://api.serpdog.io/maps_post?api_key=APIKEY&data_id=0x89c259b85fddaacb:0x645e776325956862",
"gps_coordinates": {
"latitude": 40.745866199999995,
"longitude": -74.0051138
},
"provider_id": "/g/12h_h4dhv",
"rating": 4.5,
"reviews": 543,
"price": "££",
"type": "Coffee shop",
"types": [
"Coffee shop",
"Espresso bar",
"Tea room"
],
"address": "High Line Hotel 180 10th Ave at W 20th St New York, 10011 United States",
"open_state": "Open ⋅ Closes 5 pm",
"hours": "Open ⋅ Closes 5 pm",
"operating_hours": {
"monday": "7 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": "7 am–5 pm"
},
"phone": "+1 212-933-9736",
"website": "https://www.intelligentsia.com/pages/high-line-hotel-coffeebar",
"description": "Hip, high-end coffee bar High-end coffee bar chain serving daily roasted brews in a contemporary setting.",
"thumbnail": "https://lh5.googleusercontent.com/p/AF1QipMzF0yNL62GI_s69ZsRNLXzugPCs36NolTZlbDz=w114-h86-k-no"
},
{
"title": "Bean & Bean Chelsea",
"place_id": "ChIJSzbFnLpZwokRbLnS40fKlpQ",
"data_id": "0x89c259ba9cc5364b:0x9496ca47e3d2b96c",
"data_cid": "-7739776499475891860",
"reviews_link": "https://api.serpdog.io/reviews?api_key=APIKEY&data_id=0x89c259ba9cc5364b:0x9496ca47e3d2b96c",
"photos_link": "https://api.serpdog.io/maps_photos?api_key=APIKEY&data_id=0x89c259ba9cc5364b:0x9496ca47e3d2b96c",
"posts_link": "https://api.serpdog.io/maps_post?api_key=APIKEY&data_id=0x89c259ba9cc5364b:0x9496ca47e3d2b96c",
"gps_coordinates": {
"latitude": 40.7470077,
"longitude": -73.9970077
},
"provider_id": "/g/11b7ysz87n",
"rating": 4.3,
"reviews": 661,
"price": "££",
"type": "Coffee shop",
"types": [
"Coffee shop",
"Breakfast restaurant",
"Brunch restaurant",
"Cafe",
"Canteen",
"Coffee roasters",
"Lunch restaurant",
"Snack bar"
],
"address": "318 8th Ave New York, NY 10001 United States",
"open_state": "Open ⋅ Closes 8 pm",
"hours": "Open ⋅ Closes 8 pm",
"operating_hours": {
"monday": "7 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–5 pm",
"sunday": "7 am–5 pm"
},
"phone": "+1 646-869-2070",
"website": "https://www.beannbeancoffee.com/",
"thumbnail": "https://lh5.googleusercontent.com/p/AF1QipO9NoezJXlNTZnWdvi_9qdjecpYtVyayiZYjxsS=w86-h114-k-no"
},
{
"title": "Joe Coffee Company",
"place_id": "ChIJbSf_R5hZwokRsiFxyNhkkHo",
"data_id": "0x89c2599847ff276d:0x7a9064d8c87121b2",
"data_cid": "8831669751512113586",
"reviews_link": "https://api.serpdog.io/reviews?api_key=APIKEY&data_id=0x89c2599847ff276d:0x7a9064d8c87121b2",
"photos_link": "https://api.serpdog.io/maps_photos?api_key=APIKEY&data_id=0x89c2599847ff276d:0x7a9064d8c87121b2",
"posts_link": "https://api.serpdog.io/maps_post?api_key=APIKEY&data_id=0x89c2599847ff276d:0x7a9064d8c87121b2",
"gps_coordinates": {
"latitude": 40.7351714,
"longitude": -73.9932621
},
"provider_id": "/g/1v2pr3p4",
"rating": 4.3,
"reviews": 232,
"price": "£",
"type": "Coffee shop",
"types": [
"Coffee shop"
],
"address": "9 E 13th St New York, NY 10003 United States",
"open_state": "Open ⋅ Closes 5 pm",
"hours": "Open ⋅ Closes 5 pm",
"operating_hours": {
"monday": "7 am–5 pm",
"tuesday": "7 am–5 pm",
"wednesday": "7 am–5 pm",
"thursday": "7 am–5 pm",
"friday": "7 am–5 pm",
"saturday": "9 am–5 pm",
"sunday": "9 am–5 pm"
},
"phone": "+1 212-924-3300",
"website": "https://joecoffeecompany.com/",
"description": "Chic cafe featuring house-roasted coffee Coffee spot offering free-trade brews, baked goods, classes & catering in a buzzy modern space.",
"thumbnail": "https://lh5.googleusercontent.com/p/AF1QipMoMeHCvrgel9ErT9MV4Vh4OKFd0IYpNn-cmXo=w114-h86-k-no"
},
{
"title": "Le Cafe Coffee",
"place_id": "ChIJhUlV15hZwokR9b9PY28zvf0",
"data_id": "0x89c25998d7554985:0xfdbd336f634fbff5",
"data_cid": "-162917458014912523",
"reviews_link": "https://api.serpdog.io/reviews?api_key=APIKEY&data_id=0x89c25998d7554985:0xfdbd336f634fbff5",
"photos_link": "https://api.serpdog.io/maps_photos?api_key=APIKEY&data_id=0x89c25998d7554985:0xfdbd336f634fbff5",
"posts_link": "https://api.serpdog.io/maps_post?api_key=APIKEY&data_id=0x89c25998d7554985:0xfdbd336f634fbff5",
"gps_coordinates": {
"latitude": 40.7339026,
"longitude": -73.9895329
},
"provider_id": "/g/11bwf92458",
"rating": 4.4,
"reviews": 114,
"price": "££",
"type": "Coffee shop",
"types": [
"Coffee shop"
],
"address": "145 4th Ave New York, NY 10003 United States",
"open_state": "Open ⋅ Closes 6 pm",
"hours": "Open ⋅ Closes 6 pm",
"operating_hours": {
"monday": "7 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–6 pm",
"sunday": "7 am–6 pm"
},
"phone": "+1 212-388-9111",
"thumbnail": "https://lh5.googleusercontent.com/p/AF1QipOL-PTXkG78LNadBbeLn2lJT1FH9LgNZ4qntt3K=w114-h86-k-no"
},
{
"title": "Stumptown Coffee Roasters",
"place_id": "ChIJT2h1HKZZwokR0kgzEtsa03k",
"data_id": "0x89c259a61c75684f:0x79d31adb123348d2",
"data_cid": "8778389626880739538",
"reviews_link": "https://api.serpdog.io/reviews?api_key=APIKEY&data_id=0x89c259a61c75684f:0x79d31adb123348d2",
"photos_link": "https://api.serpdog.io/maps_photos?api_key=APIKEY&data_id=0x89c259a61c75684f:0x79d31adb123348d2",
"posts_link": "https://api.serpdog.io/maps_post?api_key=APIKEY&data_id=0x89c259a61c75684f:0x79d31adb123348d2",
"gps_coordinates": {
"latitude": 40.7457399,
"longitude": -73.9882272
},
"provider_id": "/g/1hhw712x0",
"rating": 4.5,
"reviews": 1489,
"price": "££",
"type": "Coffee shop",
"types": [
"Coffee shop",
"Cafe",
"Coffee store",
"Tea Shop"
],
"address": "18 W 29th St New York, NY 10001 United States",
"open_state": "Open ⋅ Closes 5 pm",
"hours": "Open ⋅ Closes 5 pm",
"operating_hours": {
"monday": "6:30 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": "7 am–5 pm",
"sunday": "7 am–5 pm"
},
"phone": "+1 347-414-7816",
"website": "https://www.stumptowncoffee.com/pages/locations-new-york-ace-hotel",
"description": "Coffee bar serving direct-trade java Coffee bar chain offering house-roasted direct-trade coffee, along with brewing gear & whole beans",
"thumbnail": "https://lh5.googleusercontent.com/p/AF1QipPpeVOrtu16jNJgwRozyVcI-2XXcJ1Zsg3vOqWu=w114-h86-k-no"
},
{
"title": "Ralph's Coffee",
"place_id": "ChIJXaZb6BJZwokRtn0wzmpDqV4",
"data_id": "0x89c25912e85ba65d:0x5ea9436ace307db6",
"data_cid": "6821057236634205622",
"reviews_link": "https://api.serpdog.io/reviews?api_key=APIKEY&data_id=0x89c25912e85ba65d:0x5ea9436ace307db6",
"photos_link": "https://api.serpdog.io/maps_photos?api_key=APIKEY&data_id=0x89c25912e85ba65d:0x5ea9436ace307db6",
"posts_link": "https://api.serpdog.io/maps_post?api_key=APIKEY&data_id=0x89c25912e85ba65d:0x5ea9436ace307db6",
"gps_coordinates": {
"latitude": 40.7401079,
"longitude": -73.9908573
},
"provider_id": "/g/11fkjjtv7x",
"rating": 4.3,
"reviews": 348,
"type": "Coffee shop",
"types": [
"Coffee shop"
],
"address": "160 5th Ave New York, NY 10010 United States",
"open_state": "Open ⋅ Closes 6 pm",
"hours": "Open ⋅ Closes 6 pm",
"operating_hours": {
"monday": "7:30 am–6 pm",
"tuesday": "7:30 am–6 pm",
"wednesday": "7:30 am–6 pm",
"thursday": "7:30 am–6 pm",
"friday": "7:30 am–6 pm",
"saturday": "7:30 am–6 pm",
"sunday": "8 am–5 pm"
},
"phone": "+1 212-627-2040",
"description": "Posh coffee shop by Ralph Lauren Chic hangout from the American designer serving espresso drinks & sweet treats in a polished space.",
"thumbnail": "https://lh5.googleusercontent.com/p/AF1QipM1RzEia7gG4YT7D7Z_F1PWy07ZxfXApxW9dlRY=w114-h86-k-no"
}
]
}
Last updated