
Google Maps Scraper
Pricing
$45.00/month + usage

Google Maps Scraper
Scrape UNLIMITED business data from Google Maps for just $45/month! Extract names, addresses, reviews, ratings, and more. Perfect for market research, lead generation, and competitor analysis. Easy to use, proxy-supported, and highly customizable. Start scraping smarter today!
0.0 (0)
Pricing
$45.00/month + usage
0
Monthly users
2
Last modified
15 hours ago
Extract UNLIMITED detailed business information from Google Maps for just $45/month, making it the most cost-effective solution for your data needs.
Features
- Unlimited Scraping: Scrape as much data as you need without limits.
- Detailed Business Information:
- Business name, address, phone number, website, and categories.
- Ratings, reviews, and review keywords.
- Opening hours, popular times, and more.
- Competitor Analysis: Extract competitor details for strategic insights.
- Proxy Support: Use your own proxies for enhanced anonymity and geo-targeting.
- Customizable Queries: Search by city, state, country, or specific keywords.
Use Cases
- Market Research: Analyze businesses in specific regions or industries.
- Lead Generation: Build targeted lists of businesses for marketing campaigns.
- Competitor Analysis: Monitor competitors' reviews, ratings, and offerings.
- Data Enrichment: Enhance your datasets with detailed business information.
Pricing
For just $45/month, you get unlimited access to scrape Google Maps data. No hidden fees, no limits—just pure data at your fingertips.
How to Use
- Input Your Query:
- Specify the city, state, country, or keywords you want to scrape.
- Set Up Your Proxy:
- Use your own proxy for secure and geo-targeted scraping.
- Run the Scraper:
- Start the scraper and let it gather the data for you.
- Download Results:
- Export the data in JSON or CSV format for easy analysis.
Recommended Proxy Providers
-
Shifter
- Reliable residential proxies all over the world.
- Cheap rates
- Order Shifter Now
- Get 10% Off any product, use coupan
rigelbytes-YoBB
.
-
OxyLabs
- 100M+ Proxies
- Fastest proxies in the market
- Real profile, human-like Residential IPs
- Quality assurance framework for most reliable IPs
- Get Proxies
-
DataImpulse
- Covers 200+ Counties
- Reliable Residential Proxies for just $1/GB
- Get Residential Proxies
🙌 Why Buy Through Our Affiliate Link?
- Exclusive Deals: Some providers may offer special discounts or bonuses when you use our link.
- Support Our Work: Each purchase helps us maintain and improve the tools and services we provide.
- No Extra Cost: You pay the same price, but part of it goes to supporting our efforts.
API Request Examples
Python
1from apify_client import ApifyClient 2 3# Initialize the ApifyClient with your API token 4client = ApifyClient("<YOUR_API_TOKEN>") 5 6# Prepare the Actor input 7run_input = { 8 "query": "Car Washes", 9 "max": 50, 10 "lang": "en", 11 "country":"USA", 12 "state":"Texas", 13 "city":"Houston" 14} 15 16# Run the Actor and wait for it to finish 17run = client.actor("rigelbytes/google-maps-scraper").call(run_input=run_input) 18 19# Fetch and print Actor results from the run's dataset (if there are any) 20for item in client.dataset(run["defaultDatasetId"]).iterate_items(): 21 print(item)
Node.js
1import { ApifyClient } from 'apify-client'; 2 3// Initialize the ApifyClient with API token 4const client = new ApifyClient({ 5 token: '<YOUR_API_TOKEN>', 6}); 7 8// Prepare Actor input 9const input = { 10 "query": "Car Washes", 11 "max": 50, 12 "lang": "en", 13 "country":"USA", 14 "state":"Texas", 15 "city":"Houston" 16}; 17 18(async () => { 19 // Run the Actor and wait for it to finish 20 const run = await client.actor("rigelbytes/google-maps-scraper").call(input); 21 22 // Fetch and print Actor results from the run's dataset (if any) 23 console.log('Results from dataset'); 24 const { items } = await client.dataset(run.defaultDatasetId).listItems(); 25 items.forEach((item) => { 26 console.dir(item); 27 }); 28})();
cURL
1# Set API token 2API_TOKEN=<YOUR_API_TOKEN> 3 4# Prepare Actor input 5cat > input.json <<'EOF' 6{ 7 "query": "Car Washes", 8 "max": "50", 9 "lang": "en", 10 "country":"USA", 11 "state":"Texas", 12 "city":"Houston" 13} 14EOF 15 16# Run the Actor 17curl "https://api.apify.com/v2/acts/rigelbytes/google-maps-scraper/runs?token=$API_TOKEN" \ 18 -X POST \ 19 -d @input.json \ 20 -H 'Content-Type: application/json'
Output
1{ 2 "place_id": "ChIJ8RY78hvxwokRqz33GOCk6Xs", 3 "name": "Presidential Detailing Studio", 4 "description": "We are New Jersey's leading auto detailing center, dedicated to delivering top-notch quality, exceptional service, and unwavering professionalism.\n\nOur detailing studio is your comprehensive destination for a wide array of services, including auto detailing, window tinting, ceramic coatings, paint correction, vinyl wrapping, paint protection film, and more.", 5 "reviews": 156, 6 "competitors": [ 7 { 8 "name": "Bubbz and Suddz Performance Auto Spa", 9 "link": "https://www.google.com/maps/search/Bubbz+and+Suddz+Performance+Auto+Spa/@40.9372241,-73.96218019999999?authuser=0&hl=en&entry=ttu", 10 "reviews": 135, 11 "rating": 4.8, 12 "main_category": "Car wash" 13 }, 14 { 15 "name": "Legend Auto Spa", 16 "link": "https://www.google.com/maps/search/Legend+Auto+Spa/@40.842669,-74.032895?authuser=0&hl=en&entry=ttu", 17 "reviews": 36, 18 "rating": 4.9, 19 "main_category": "Car detailing service" 20 }, 21 { 22 "name": "NOORA DETAIL | Mobile Car Care & Detailing Service", 23 "link": "https://www.google.com/maps/search/NOORA+DETAIL+%7C+Mobile+Car+Care+%26+Detailing+Service/@40.940798099999995,-73.9636062?authuser=0&hl=en&entry=ttu", 24 "reviews": 4, 25 "rating": 5, 26 "main_category": "Car detailing service" 27 }, 28 { 29 "name": "Englewood Mobile Car Detail & Interior Car Cleaning Company", 30 "link": "https://www.google.com/maps/search/Englewood+Mobile+Car+Detail+%26+Interior+Car+Cleaning+Company/@40.888234499999996,-73.9672082?authuser=0&hl=en&entry=ttu", 31 "reviews": 4, 32 "rating": 5, 33 "main_category": "Car detailing service" 34 } 35 ], 36 "website": "https://presdetail.com/", 37 "can_claim": false, 38 "owner": { 39 "id": "105204644219657354711", 40 "name": "Presidential Detailing Studio (Owner)", 41 "link": "https://www.google.com/maps/contrib/105204644219657354711" 42 }, 43 "featured_image": "https://lh3.googleusercontent.com/p/AF1QipOrCFiOlcmWpK4dc1w4xSDlUhe1p4gFVnrHI0_P=w408-h544-k-no", 44 "main_category": "Car detailing service", 45 "categories": [ 46 "Car detailing service", 47 "Auto window tinting service", 48 "Car wash", 49 "Vehicle wrapping service", 50 "Window tinting service" 51 ], 52 "rating": 5, 53 "workday_timing": "9 AM-5 PM", 54 "closed_on": ["Sunday"], 55 "phone": "(201) 240-0493", 56 "address": "Presidential Detailing Studio, 147 Piermont Rd, Tenafly, NJ 07670", 57 "review_keywords": [ 58 { 59 "keyword": "vehicle", 60 "count": 28 61 }, 62 { 63 "keyword": "job", 64 "count": 23 65 }, 66 { 67 "keyword": "brand", 68 "count": 23 69 }, 70 { 71 "keyword": "team", 72 "count": 14 73 }, 74 { 75 "keyword": "paint", 76 "count": 12 77 }, 78 { 79 "keyword": "car washes", 80 "count": 8 81 }, 82 { 83 "keyword": "house", 84 "count": 7 85 }, 86 { 87 "keyword": "showroom", 88 "count": 6 89 }, 90 { 91 "keyword": "company", 92 "count": 6 93 }, 94 { 95 "keyword": "ceramic", 96 "count": 5 97 } 98 ], 99 "link": "https://www.google.com/maps/place/Presidential+Detailing+Studio/data=!4m7!3m6!1s0x89c2f11bf23b16f1:0x7be9a4e018f73dab!8m2!3d40.9372241!4d-73.9621802!16s%2Fg%2F11vqh1ghw3!19sChIJ8RY78hvxwokRqz33GOCk6Xs?authuser=0&hl=en&rclk=1", 100 "status": "Closed Opens 9 AM", 101 "price_range": null, 102 "reviews_per_rating": { 103 "1": null, 104 "2": null, 105 "3": null, 106 "4": null, 107 "5": null 108 }, 109 "featured_question": null, 110 "reviews_link": "https://search.google.com/local/reviews?placeid=ChIJ8RY78hvxwokRqz33GOCk6Xs&q=Presidential+Detailing+Studio&authuser=0&hl=en&gl=US", 111 "coordinates": { 112 "latitude": 40.9372241, 113 "longitude": -73.96218019999999 114 }, 115 "plus_code": "W2PQ+V4 Tenafly, New Jersey", 116 "detailed_address": { 117 "ward": null, 118 "street": "147 Piermont Rd", 119 "city": "Tenafly", 120 "postal_code": "07670", 121 "state": "New Jersey", 122 "country_code": "US" 123 }, 124 "time_zone": "America/New_York", 125 "cid": "8928849018637204907", 126 "data_id": "0x89c2f11bf23b16f1:0x7be9a4e018f73dab", 127 "menu": { 128 "link": null, 129 "source": null 130 }, 131 "reservations": [], 132 "order_online_links": [ 133 { 134 "link": "https://presidential-detailing-studio.square.site/", 135 "source": "presidential-detailing-studio.square.site" 136 } 137 ], 138 "about": [ 139 { 140 "id": "service_options", 141 "name": "Service options", 142 "options": [ 143 { 144 "name": "Onsite services", 145 "enabled": true 146 } 147 ] 148 }, 149 { 150 "id": "accessibility", 151 "name": "Accessibility", 152 "options": [ 153 { 154 "name": "Wheelchair accessible entrance", 155 "enabled": true 156 }, 157 { 158 "name": "Wheelchair accessible parking lot", 159 "enabled": true 160 } 161 ] 162 }, 163 { 164 "id": "amenities", 165 "name": "Amenities", 166 "options": [ 167 { 168 "name": "Restroom", 169 "enabled": true 170 } 171 ] 172 }, 173 { 174 "id": "planning", 175 "name": "Planning", 176 "options": [ 177 { 178 "name": "Appointments recommended", 179 "enabled": true 180 } 181 ] 182 } 183 ], 184 "images": [ 185 { 186 "about": "All", 187 "link": "https://lh3.googleusercontent.com/p/AF1QipOrCFiOlcmWpK4dc1w4xSDlUhe1p4gFVnrHI0_P=w224-h298-k-no" 188 }, 189 { 190 "about": "Latest", 191 "link": "https://lh3.googleusercontent.com/p/AF1QipOv69lRz3q9R4YEULKNgERa4sjQap-pEExOjkon=w224-h398-k-no" 192 }, 193 { 194 "about": "Videos", 195 "link": "https://lh3.googleusercontent.com/p/AF1QipNrzWa1MFP3k2RJQ5VOqK-itdrrokohOkjkr5bY=w224-h398-k-no" 196 }, 197 { 198 "about": "By owner", 199 "link": "https://lh3.googleusercontent.com/p/AF1QipNhzrqrnQrQI5c_35KrQZ6XcTSRDA-dm8UAS8hm=w224-h298-k-no" 200 }, 201 { 202 "about": "Street View & 360deg", 203 "link": "https://streetviewpixels-pa.googleapis.com/v1/thumbnail?panoid=-t41I2caFqI5eYPJv4VZUg&cb_client=maps_sv.tactile.gps&w=224&h=298&yaw=93.105865&pitch=0&thumbfov=100" 204 } 205 ], 206 "hours": [ 207 { 208 "day": "Monday", 209 "times": ["9 AM-5 PM"] 210 }, 211 { 212 "day": "Tuesday", 213 "times": ["9 AM-5 PM"] 214 }, 215 { 216 "day": "Wednesday", 217 "times": ["9 AM-5 PM"] 218 }, 219 { 220 "day": "Thursday", 221 "times": ["9 AM-5 PM"] 222 }, 223 { 224 "day": "Friday", 225 "times": ["9 AM-5 PM"] 226 }, 227 { 228 "day": "Saturday", 229 "times": ["9 AM-5 PM"] 230 }, 231 { 232 "day": "Sunday", 233 "times": ["Closed"] 234 } 235 ], 236 "most_popular_times": "Not Present", 237 "popular_times": "Not Present", 238 "featured_reviews": [], 239 "is_spending_on_ads": true 240}
Requirements
- An Apify account
- Search Query
- A valid proxy (optional but recommended for large-scale scraping).
🚀 Other Tools by Rigel Bytes
Extract property listings, prices, and details from Zillow effortlessly.
Gather Airbnb listings, including prices, reviews, and availability.
A versatile tool to crawl and scrape data from any website.
Dive deeper into Zillow listings with detailed property information.
Scrape product details, prices, and reviews from Daraz.
Download high-quality images from Airbnb listings with ease.
Get Started Today!
Start scraping Google Maps data effortlessly. Unlock unlimited access for just $45/month and take your data collection to the next level.
Understanding Proxies:
When scraping data or browsing anonymously, proxies are essential. They act as intermediaries, masking your original IP address and allowing you to send requests from another location.
Why Use Proxies?
- Avoid IP Blocks: By routing requests through proxies, you prevent the target website from recognizing your IP as a scraper or spammer.
- Access Geo-restricted Content: Proxies let you access content or websites restricted by location.
- Enhance Anonymity: Hide your actual IP, ensuring privacy while scraping or browsing.
Types of Proxies
- Residential Proxies
- Real IP addresses provided by ISPs to home users.
- They mimic regular users, making them harder to detect.
- Best for: Long-term, undetectable scraping, and avoiding blocks.
- Data Center Proxies
- IP addresses from servers in data centers.
- Faster and cheaper than residential proxies but easier to detect and block.
- Best for: High-speed scraping, but with a higher risk of detection.
- Mobile Proxies
- IPs provided by mobile carriers (3G/4G/5G networks).
- Very difficult to detect, as they appear as regular mobile users.
- Best for: Mobile-related scraping or avoiding sophisticated blocks.
Rotating Proxies vs. Straight Proxies
- Rotating Proxies: Every request you send goes through a different proxy, making it harder for websites to detect patterns.
- Straight Proxies: All requests are sent through the same proxy, making it easier to track your IP.
About Rigel Bytes
Rigel Bytes specializes in web scraping, automation, and data analytics. We help businesses extract and leverage valuable data for informed decision-making.
Contact Us
Ready to unlock the power of data? Reach out to us at (contact@rigelbytes.com) or book an appointment with us to learn more about how we can help you achieve your data goals.
Pricing
Pricing model
RentalTo use this Actor, you have to pay a monthly rental fee to the developer. The rent is subtracted from your prepaid usage every month after the free trial period. You also pay for the Apify platform usage.
Free trial
30 minutes
Price
$45.00