Install
openclaw skills install google-maps-exportExport Google Maps business data to CSV, JSON, or CRM format (HubSpot, Pipedrive, Salesforce). Bulk export with custom field mapping and filtering.
openclaw skills install google-maps-exportExport business data from Google Maps to any format — CSV, JSON, or directly into your CRM. Bulk export with custom field mapping and filtering.
Each export costs 2 credits. Free accounts get 10 credits (5 exports). Maximize value: export once, transform to multiple formats for free.
Ask the user:
📤 Export Request:
Data: {{category}} in {{location}}
Format: {{format}}
Expected: 20-80 records
Cost: 2 credits
Proceed?
curl -X POST "https://gmapsscraper.io/api/v1/jobs" \
-H "Content-Type: application/json" \
-H "Authorization: Bearer $GMAPS_SCRAPER_API_KEY" \
-d '{
"name": "Export: {{category}} in {{location}}",
"keywords": ["{{category}} in {{location}}"],
"lang": "en",
"depth": 2,
"email": true
}'
After job completes:
curl -s "https://gmapsscraper.io/api/v1/jobs/{{job_id}}/download" \
-H "Authorization: Bearer $GMAPS_SCRAPER_API_KEY" \
--output raw_export.csv
CSV (default): Already done — deliver raw_export.csv
JSON:
python3 -c "
import csv, json
with open('raw_export.csv') as f:
data = list(csv.DictReader(f))
with open('export.json', 'w') as f:
json.dump(data, f, indent=2)
print(f'Exported {len(data)} records')
"
HubSpot import format:
Field mapping:
title → Company name
email → Email
phone → Phone number
website → Company domain name
address → Street address
category → Industry
rating → (custom property: google_rating)
reviews_count → (custom property: google_reviews)
Pipedrive format:
Field mapping:
title → Organization name
email → Email
phone → Phone
website → Website
address → Address
rating → Custom field
Salesforce format:
Field mapping:
title → Account Name
phone → Phone
website → Website
address → Billing Street
category → Industry
email → (Contact: Email)
If user requested filters:
rating >= Xhas_email == truehas_website == truereviews_count >= X✅ Export Complete!
Records: {{total}} ({{filtered}} after filters)
Format: {{format}}
File: {{filename}}
Fields included: name, address, phone, email, website, rating, reviews, category
| Field | Description | Example |
|---|---|---|
| title | Business name | "Joe's Pizza" |
| address | Full address | "123 Main St, NYC" |
| phone | Phone number | "+1-212-555-0123" |
| Contact email | "joe@joespizza.com" | |
| website | Website URL | "joespizza.com" |
| rating | Google rating | 4.5 |
| reviews_count | Review count | 234 |
| category | Business type | "Pizza restaurant" |
| latitude | Lat coordinate | 40.7128 |
| longitude | Lon coordinate | -74.0060 |
| google_maps_url | Maps link | "maps.google.com/..." |
| opening_hours | Hours | "Mon-Sun 11am-10pm" |
After exporting, you can re-process the CSV for free:
cold-email-local-business (no credits)competitor-analysis-local (no credits)One 2-credit export → unlimited free analysis and outreach.
⚡ Credits used up!
Upgrade for unlimited exports: https://gmapsscraper.io/#pricing
💡 You can still transform and re-analyze your existing CSV exports
using other skills — no credits needed!
export GMAPS_SCRAPER_API_KEY=your_keyUnlimited from $29/month.