Google Maps Scraper avatar
Google Maps Scraper
Try for free

3 days trial then $20.00/month - No credit card required now

View all Actors
Google Maps Scraper

Google Maps Scraper

epctex/google-maps-scraper
Try for free

3 days trial then $20.00/month - No credit card required now

Effortlessly gather places data from Google Maps using our advanced scraper. Search by keyword or location, retrieve reviews, and analyze insights for informed decisions. Fast, customizable, and reliable. Get valuable location information with ease.

The code examples below show how to run the Actor and get its results. To run the code, you need to have an Apify account. Replace <YOUR_API_TOKEN> in the code with your API token, which you can find under Settings > Integrations in Apify Console. Learn more

1# Set API token
2API_TOKEN=<YOUR_API_TOKEN>
3
4# Prepare Actor input
5cat > input.json <<'EOF'
6{
7  "startUrls": [
8    "https://www.google.com/maps/search/cafe/@40.6976437,-74.3093257,10z/data=!3m1!4b1?authuser=0&hl=en&entry=ttu",
9    "https://www.google.com/maps/place/The+Museum+of+Modern+Art/@40.7614367,-73.9801965,17z/data=!3m2!4b1!5s0x89c258fbd5ec7547:0x7edf0a3ade84ad50!4m6!3m5!1s0x89c258f97bdb102b:0xea9f8fc0b3ffff55!8m2!3d40.7614327!4d-73.9776216!16zL20vMGhoams?authuser=0&hl=en&entry=ttu"
10  ],
11  "search": "cafe",
12  "searchLocation": "San Francisco, USA",
13  "language": "en",
14  "reviewsSort": "mostRelevant",
15  "maxItems": 20,
16  "maxReviews": 20,
17  "extendOutputFunction": "($) => { return {} }",
18  "customMapFunction": "(object) => { return {...object} }",
19  "proxy": {
20    "useApifyProxy": true
21  }
22}
23EOF
24
25# Run the Actor using an HTTP API
26# See the full API reference at https://docs.apify.com/api/v2
27curl "https://api.apify.com/v2/acts/epctex~google-maps-scraper/runs?token=$API_TOKEN" \
28  -X POST \
29  -d @input.json \
30  -H 'Content-Type: application/json'
Developer
Maintained by Community
Actor metrics
  • 63 monthly users
  • 3 stars
  • 97.3% runs succeeded
  • Created in Aug 2023
  • Modified 1 day ago