Back to templates
Salesextract
4.9
3.1k uses
Google Maps Business Scraper
Extract business listings from Google Maps including name, rating, review count, address, phone, and website
Target URL
https://www.google.com/maps/search/restaurants+near+meVisit SiteSteps
1
Go to Google Maps search results
navigate
2
Wait for business listings to load
wait
3
Scroll results panel to load more
scroll
4
Extract business listings
extract
| Field | Selector | Transform |
|---|---|---|
| name | .fontHeadlineSmall | text |
| rating | .MW4etd | text |
| reviewCount | .UY7F9 | text |
| address | .W4Efsd:nth-child(1) .W4Efsd:nth-child(2) span:nth-child(2) | text |
| phone | .W4Efsd:nth-child(2) .W4Efsd span:nth-child(2) | text |
| website | a.lcr4fd | url |
Output Schema
| Field | Type |
|---|---|
| name | string |
| rating | string |
| reviewCount | string |
| address | string |
| phone | string |
| website | string |
Example Output
| name | rating | reviewCount | address | phone | website |
|---|---|---|---|---|---|
| Joe's Pizza | 4.5 | 1,247 reviews | 7 Carmine St, New York, NY 10014 | (212) 366-1182 | https://joespizzanyc.com |
| Shake Shack - Madison Square Park | 4.3 | 8,921 reviews | 11 Madison Ave, New York, NY 10010 | (212) 889-6600 | https://shakeshack.com |
| Katz's Delicatessen | 4.4 | 15,432 reviews | 205 E Houston St, New York, NY 10002 | (212) 254-2246 | https://katzsdelicatessen.com |
API Endpoint
curl -X POST https://api.scraper.bot/v1/flows \
-H "Authorization: Bearer scr_live_YOUR_API_KEY" \
-H "Content-Type: application/json" \
-d '{
"templateId": "tmpl-google-maps-businesses",
"url": "https://www.google.com/maps/search/restaurants+near+me"
}'