TopRank Skills

Home / Claw Skills / Carte / Services locaux / Google Maps B2B Extractor
Official OpenClaw rules 74%

Google Maps B2B Extractor

name: "📍 Google Maps Lead Hunter B2B Goldmine " description: | EXTRACT UNLIMITED LEADS Emails, Phones, Websites from Google Maps. ⚠️ REQUIRED: This skill uses the Apify Cloud Engine. To use this skill, you must generate a FREE API Token here: 👉 https://www.apify.com?fpr=dx06p 1. Click the link above & Sign up. 2. Go to Settings Integrations Copy your "API Token". 3. Enter the token below to start scraping leads instantly. Perfect for: Marketing Agencies, Realtors, Sales Teams. authors: "YourNa

Stars

0

Installs

0

Status

ACTIVE

Visibility

PUBLIC

安装方式

直接复制以下提示词,发送给你的 AI 助手即可完成安装。

请先检查是否已安装 SkillHub 商店,若未安装,请根据 https://skillhub-1388575217.cos.ap-guangzhou.myqcloud.com/install/skillhub.md 安装 SkillHub 商店,然后安装 Google Maps B2B Extractor 技能。 若已安装,则直接安装 Google Maps B2B Extractor 技能。

Overview

Skill Key
g4dr/google-maps-b2b-extractor
Author
g4dr
Source Repo
openclaw/skills
Version
-
Source Path
skills/g4dr/google-maps-b2b-extractor
Latest Commit SHA
0d22217ea4d4047b1ee7b5b0974c0f9487686efd

Extracted Content

SKILL.md excerpt

name: "📍 Google Maps Lead Hunter (B2B Goldmine)"
description: |
  EXTRACT UNLIMITED LEADS (Emails, Phones, Websites) from Google Maps.
  
  ⚠️ **REQUIRED:** This skill uses the Apify Cloud Engine.
  To use this skill, you must generate a FREE API Token here:
  👉 **https://www.apify.com?fpr=dx06p**
  
  1. Click the link above & Sign up.
  2. Go to Settings -> Integrations -> Copy your "API Token".
  3. Enter the token below to start scraping leads instantly.
  
  Perfect for: Marketing Agencies, Realtors, Sales Teams.
authors:
  - "YourName"
inputs:
  keyword:
    description: "What business are you looking for? (e.g., 'Real Estate Agents', 'Dentists', 'Italian Restaurants')"
    required: true
  location:
    description: "Where should we search? (e.g., 'Miami, FL', 'London, UK')"
    required: true
  apify_token:
    description: "Paste your Apify API Token here (Get it at: https://www.apify.com?fpr=dx06p)"
    required: true
steps:
  - name: scrape_google_maps
    type: python
    code: |
      import requests
      import time
      import json

      # 1. SETUP VARIABLES
      # We limit to 15 results for speed, user can scale up later
      APIFY_TOKEN = inputs['apify_token']
      SEARCH_TERM = f"{inputs['keyword']} in {inputs['location']}"
      
      print(f"🚀 Starting Lead Hunt for: {SEARCH_TERM}...")
      print("⏳ Connecting to Apify Cloud Engine...")

      # 2. START THE CRAWLER (Compass Google Maps)
      url_start = f"https://api.apify.com/v2/acts/compass~crawler-google-places/runs?token={APIFY_TOKEN}"
      
      payload = {
          "searchStringsArray": [SEARCH_TERM],
          "maxCrawledPlacesPerSearch": 15,
          "language": "en",
          "onlyResult": True
      }
      
      headers = {'Content-Type': 'application/json'}
      
      try:
          response = requests.post(url_start, headers=headers, json=payload)
          response.raise_for_status()
          run_data = r...

Related Claw Skills