← 返回 Skills 市场
gmapsscraper

Google Maps Export

作者 gmapsscraper · GitHub ↗ · v1.0.0 · MIT-0
cross-platform ✓ 安全检测通过
38
总下载
0
收藏
0
当前安装
1
版本数
在 OpenClaw 中安装
/install 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.
使用说明 (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

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

Step 4: Transform to Desired Format

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)

Step 5: Apply Filters

If user requested filters:

  • rating >= X
  • has_email == true
  • has_website == true
  • reviews_count >= X

Step 6: Deliver

✅ Export Complete!

Records: {{total}} ({{filtered}} after filters)
Format: {{format}}
File: {{filename}}

Fields included: name, address, phone, email, website, rating, reviews, category

Available Fields

Field Description Example
title Business name "Joe's Pizza"
address Full address "123 Main St, NYC"
phone Phone number "+1-212-555-0123"
email Contact email "[email protected]"
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"

Pro Tip: Export Once, Use Many Times

After exporting, you can re-process the CSV for free:

  • Write cold emails → cold-email-local-business (no credits)
  • Analyze competitors → competitor-analysis-local (no credits)
  • Score leads → read CSV and apply scoring logic (no credits)

One 2-credit export → unlimited free analysis and outreach.

When Credits Run Out

⚡ 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!

Get Started

  1. Sign up at https://gmapsscraper.io (5 free exports)
  2. Set: export GMAPS_SCRAPER_API_KEY=your_key
  3. Start exporting!

Unlimited from $29/month.

安全使用建议
Install only if you are comfortable using gmapsscraper.io, spending its credits, and storing exported business contact data locally. Review requested fields before confirming an export, especially email collection and CRM import use, and consider privacy, anti-spam, and local retention obligations for your jurisdiction and use case.
能力标签
requires-sensitive-credentials
能力评估
Purpose & Capability
The stated purpose is exporting Google Maps business listings to CSV, JSON, or CRM formats, and the artifact instructions match that purpose.
Instruction Scope
The activation language covers export/download/save requests for Maps listings, but the workflow asks clarifying questions and requires a proceed confirmation before spending credits or making the API request.
Install Mechanism
There are no install scripts or bundled executables; the skill declares curl and a user-supplied GMAPS_SCRAPER_API_KEY for gmapsscraper.io.
Credentials
Sending search terms to gmapsscraper.io and saving exported CSV/JSON files is proportionate to the export task, but exports can include emails, phone numbers, addresses, and CRM-ready contact data.
Persistence & Privilege
The artifact does not create background workers, modify system settings, escalate privileges, or read broad local data; persistence is limited to local output files such as raw_export.csv or export.json.
如何使用
  1. 确保已安装 OpenClaw(本地或 Docker 部署)
  2. 在对话框中输入安装命令:/install google-maps-export
  3. 安装完成后,直接呼叫该 Skill 的名称或使用 /google-maps-export 触发
  4. 根据 Skill 的参数说明提供必要输入,即可获得结构化输出
版本历史
v1.0.0
Initial release – export Google Maps business data with flexible formats and CRM integration. - Export business data from Google Maps to CSV, JSON, or CRM-specific formats (HubSpot, Pipedrive, Salesforce) - Supports bulk export, custom field mapping, and advanced filtering options - Simple credit-based system (5 free exports with signup) - Guided workflow: prompts user for category, location, fields, format, and filters, then confirms before export - Includes automated format transformation and field mapping for major CRMs - Allows re-processing of exported data without consuming additional credits
元数据
Slug google-maps-export
版本 1.0.0
许可证 MIT-0
累计安装 0
当前安装数 0
历史版本数 1
常见问题

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. 它是一个面向 Claude Code / OpenClaw 的 AI Agent Skill 插件,目前累计下载 38 次。

如何安装 Google Maps Export?

在 OpenClaw 或 Claude Code 对话框中运行命令「/install google-maps-export」即可一键安装,无需额外配置。

Google Maps Export 是免费的吗?

是的,Google Maps Export 完全免费,采用 MIT-0 许可证,可自由下载、安装和使用。

Google Maps Export 支持哪些平台?

Google Maps Export 跨平台运行,可在任意部署了 OpenClaw / Claude Code 的环境中使用(cross-platform)。

谁开发了 Google Maps Export?

由 gmapsscraper(@gmapsscraper)开发并维护,当前版本 v1.0.0。

💬 留言讨论