Easy Google Maps Scraper avatar
Easy Google Maps Scraper
Try for free

7 days trial then $30.00/month - No credit card required now

View all Actors
Easy Google Maps Scraper

Easy Google Maps Scraper

compass/easy-google-maps
Try for free

7 days trial then $30.00/month - No credit card required now

Collect data from Google Maps. Just enter what you want to scrape, e.g. restaurants, and where you want to search, e.g. New York. Free and easy web scraping of map data.

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  "search": "restaurant",
8  "location": "New York",
9  "maxCrawledPlacesPerSearch": 10
10}
11EOF
12
13# Run the Actor using an HTTP API
14# See the full API reference at https://docs.apify.com/api/v2
15curl "https://api.apify.com/v2/acts/compass~easy-google-maps/runs?token=$API_TOKEN" \
16  -X POST \
17  -d @input.json \
18  -H 'Content-Type: application/json'
Developer
Maintained by Apify
Actor metrics
  • 59 monthly users
  • 14 stars
  • 98.5% runs succeeded
  • 2.1 days response time
  • Created in Feb 2022
  • Modified about 9 hours ago