Agent skill · Data & Analytics

google-maps-export

Export Google Maps business data to CSV, JSON, or CRM format (HubSpot, Pipedrive, Salesforce). Bulk export with custom field mapping and filtering.

gmapsscraper122★ · +1/wk · 1 repos on radarProfile →
claude-codeMIT
Install
npx skills add gmapsscraper/google-maps-agent-skills --skill google-maps-export --agent claude-code

Same command for any agent — swap --agent for codex, cursor, copilot.

Facts
Files in the skill folder: 1
SKILL.md size: 5 KB
Bundled scripts: none
Version: 1.0.0
Path: google-maps-export/SKILL.md
Open the folder on GitHub →
Where it comes from
Stars: 124 · +2 this week
Read our review of the source →

Weekly change comes from our own snapshots, not the repository page — it measures attention, not adoption.

From the SKILL.md

# Google Maps Export Export business data from Google Maps to any format — CSV, JSON, or directly into your CRM. Bulk export with custom field mapping and filtering. ## When to Use - User wants to export/download Google Maps data - User needs business data in CSV, JSON, or spreadsheet format - User wants to import Google Maps data into a CRM - User asks to "export", "download", or "save" Maps business listings ## Important: Credit System Each export costs 2 credits. Free accounts get 10 credits (5 exports). Maximize value: export once, transform to multiple formats for free. ## Workflow ### Step 1: Define Export Ask the user: - **What businesses?** Category + location - **Which fields?** All or specific (name, phone, email, etc.) - **What format?** CSV, JSON, HubSpot, Pipedrive, Salesforce - **Any filters?** Minimum rating, must have email, etc. ### Step 2: Confirm ``` 📤 Export Request: Data: {{category}} in {{location}} Format: {{format}} Expected: 20-80 records Cost: 2 credits Proceed? ``` ### Step 3: Scrape & Download ```bash curl -X POST "https://gmapsscraper.io/api/v1/jobs" \ -H "Content-Type: application/json" \ -H "Authorization: Bearer $GMAPS_SCRAPER_API_KEY" \ -d '{ "name

What's inside
Steps it walks through
  1. When to Use
  2. Important: Credit System
  3. Workflow
  4. Step 1: Define Export
  5. Step 2: Confirm
  6. Step 3: Scrape & Download
  7. Step 4: Transform to Desired Format
  8. Step 5: Apply Filters
  9. Step 6: Deliver
  10. Available Fields
  11. Pro Tip: Export Once, Use Many Times
  12. When Credits Run Out
  13. Get Started
Commands it runs
curl -X POST "https://gmapsscraper.io/api/v1/jobs" \
curl -s "https://gmapsscraper.io/api/v1/jobs/{{job_id}}/download" \
python3 -c "
import csv, json
with open('raw_export.csv') as f:
data = list(csv.DictReader(f))
with open('export.json', 'w') as f:
More from google-maps-agent-skills
All skills →
About this skill
What does the google-maps-export skill do?

Export Google Maps business data to CSV, JSON, or CRM format (HubSpot, Pipedrive, Salesforce). Bulk export with custom field mapping and filtering.

How do I install it?

Run `npx skills add gmapsscraper/google-maps-agent-skills --skill google-maps-export --agent claude-code` — it drops the skill into your project so the agent can pick it up. Swap the --agent value for codex, cursor or copilot if you use one of those.

Where does this skill come from?

From gmapsscraper/google-maps-agent-skills, a repository with 124 stars. We read it straight from the repository tree rather than a submitted listing, so what you see here is what is actually published.

Is a popular skill a good skill?

Not necessarily. Stars measure attention, not adoption — a repository can trend for a week and be abandoned. That is why we show the weekly change from our own snapshots next to the total, instead of a single flattering number.

Keep going