{
  "schemaVersion": "1.0",
  "item": {
    "slug": "google-maps-b2b-extractor",
    "name": "📍 Google Maps B2B Goldmine (Leads Generator)",
    "source": "tencent",
    "type": "skill",
    "category": "开发工具",
    "sourceUrl": "https://clawhub.ai/g4dr/google-maps-b2b-extractor",
    "canonicalUrl": "https://clawhub.ai/g4dr/google-maps-b2b-extractor",
    "targetPlatform": "OpenClaw"
  },
  "install": {
    "downloadMode": "redirect",
    "downloadUrl": "/downloads/google-maps-b2b-extractor",
    "sourceDownloadUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=google-maps-b2b-extractor",
    "sourcePlatform": "tencent",
    "targetPlatform": "OpenClaw",
    "installMethod": "Manual import",
    "extraction": "Extract archive",
    "prerequisites": [
      "OpenClaw"
    ],
    "packageFormat": "ZIP package",
    "includedAssets": [
      "skill.md"
    ],
    "primaryDoc": "SKILL.md",
    "quickSetup": [
      "Download the package from Yavira.",
      "Extract the archive and review SKILL.md first.",
      "Import or place the package into your OpenClaw setup."
    ],
    "agentAssist": {
      "summary": "Hand the extracted package to your coding agent with a concrete install brief instead of figuring it out manually.",
      "steps": [
        "Download the package from Yavira.",
        "Extract it into a folder your agent can access.",
        "Paste one of the prompts below and point your agent at the extracted folder."
      ],
      "prompts": [
        {
          "label": "New install",
          "body": "I downloaded a skill package from Yavira. Read SKILL.md from the extracted folder and install it by following the included instructions. Tell me what you changed and call out any manual steps you could not complete."
        },
        {
          "label": "Upgrade existing",
          "body": "I downloaded an updated skill package from Yavira. Read SKILL.md from the extracted folder, compare it with my current installation, and upgrade it while preserving any custom configuration unless the package docs explicitly say otherwise. Summarize what changed and any follow-up checks I should run."
        }
      ]
    },
    "sourceHealth": {
      "source": "tencent",
      "status": "healthy",
      "reason": "direct_download_ok",
      "recommendedAction": "download",
      "checkedAt": "2026-05-07T17:22:31.273Z",
      "expiresAt": "2026-05-14T17:22:31.273Z",
      "httpStatus": 200,
      "finalUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=afrexai-annual-report",
      "contentType": "application/zip",
      "probeMethod": "head",
      "details": {
        "probeUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=afrexai-annual-report",
        "contentDisposition": "attachment; filename=\"afrexai-annual-report-1.0.0.zip\"",
        "redirectLocation": null,
        "bodySnippet": null
      },
      "scope": "source",
      "summary": "Source download looks usable.",
      "detail": "Yavira can redirect you to the upstream package for this source.",
      "primaryActionLabel": "Download for OpenClaw",
      "primaryActionHref": "/downloads/google-maps-b2b-extractor"
    },
    "validation": {
      "installChecklist": [
        "Use the Yavira download entry.",
        "Review SKILL.md after the package is downloaded.",
        "Confirm the extracted package contains the expected setup assets."
      ],
      "postInstallChecks": [
        "Confirm the extracted package includes the expected docs or setup files.",
        "Validate the skill or prompts are available in your target agent workspace.",
        "Capture any manual follow-up steps the agent could not complete."
      ]
    },
    "downloadPageUrl": "https://openagent3.xyz/downloads/google-maps-b2b-extractor",
    "agentPageUrl": "https://openagent3.xyz/skills/google-maps-b2b-extractor/agent",
    "manifestUrl": "https://openagent3.xyz/skills/google-maps-b2b-extractor/agent.json",
    "briefUrl": "https://openagent3.xyz/skills/google-maps-b2b-extractor/agent.md"
  },
  "agentAssist": {
    "summary": "Hand the extracted package to your coding agent with a concrete install brief instead of figuring it out manually.",
    "steps": [
      "Download the package from Yavira.",
      "Extract it into a folder your agent can access.",
      "Paste one of the prompts below and point your agent at the extracted folder."
    ],
    "prompts": [
      {
        "label": "New install",
        "body": "I downloaded a skill package from Yavira. Read SKILL.md from the extracted folder and install it by following the included instructions. Tell me what you changed and call out any manual steps you could not complete."
      },
      {
        "label": "Upgrade existing",
        "body": "I downloaded an updated skill package from Yavira. Read SKILL.md from the extracted folder, compare it with my current installation, and upgrade it while preserving any custom configuration unless the package docs explicitly say otherwise. Summarize what changed and any follow-up checks I should run."
      }
    ]
  },
  "documentation": {
    "source": "clawhub",
    "primaryDoc": "SKILL.md",
    "sections": [
      {
        "title": "We limit to 15 results for speed, user can scale up later",
        "body": "APIFY_TOKEN = inputs['apify_token']\r\nSEARCH_TERM = f\"{inputs['keyword']} in {inputs['location']}\"\n\nprint(f\"🚀 Starting Lead Hunt for: {SEARCH_TERM}...\")\r\nprint(\"⏳ Connecting to Apify Cloud Engine...\")"
      },
      {
        "title": "2. START THE CRAWLER (Compass Google Maps)",
        "body": "url_start = f\"https://api.apify.com/v2/acts/compass~crawler-google-places/runs?token={APIFY_TOKEN}\"\n\npayload = {\r\n\"searchStringsArray\": [SEARCH_TERM],\r\n\"maxCrawledPlacesPerSearch\": 15,\r\n\"language\": \"en\",\r\n\"onlyResult\": True\r\n}\n\nheaders = {'Content-Type': 'application/json'}\n\ntry:\r\nresponse = requests.post(url_start, headers=headers, json=payload)\r\nresponse.raise_for_status()\r\nrun_data = response.json()['data']\r\nrun_id = run_data['id']\r\ndataset_id = run_data['defaultDatasetId']\r\nexcept Exception as e:\r\nprint(f\"❌ Error: Invalid API Token or Apify Connection failed. Did you sign up via the link? Error: {e}\")\r\nraise e\n\nprint(f\"✅ Scraper Started! (Run ID: {run_id})\")\r\nprint(\"☕ This usually takes 30-60 seconds. Extracting fresh data...\")"
      },
      {
        "title": "3. POLL FOR COMPLETION",
        "body": "while True:\r\nstatus_url = f\"https://api.apify.com/v2/acts/runs/{run_id}?token={APIFY_TOKEN}\"\r\nstatus_res = requests.get(status_url)\r\nstatus_data = status_res.json()['data']\r\nstatus = status_data['status']\n\nif status == \"SUCCEEDED\":\r\n      break\r\n  elif status in [\"FAILED\", \"ABORTED\", \"TIMED-OUT\"]:\r\n      print(\"❌ The scrape failed. Please try again.\")\r\n      return\r\n  \r\n  time.sleep(5) # Wait 5 seconds before checking again"
      },
      {
        "title": "4. FETCH THE DATA (LEADS)",
        "body": "dataset_url = f\"https://api.apify.com/v2/datasets/{dataset_id}/items?token={APIFY_TOKEN}\"\r\ndata_res = requests.get(dataset_url)\r\nitems = data_res.json()"
      },
      {
        "title": "5. FORMAT OUTPUT FOR CLAWHUB USER",
        "body": "results = []\r\nfor item in items:\r\nlead = {\r\n\"Business Name\": item.get('title', 'N/A'),\r\n\"Phone\": item.get('phone', 'N/A'),\r\n\"Website\": item.get('website', 'N/A'),\r\n\"Address\": item.get('address', 'N/A'),\r\n\"Rating\": item.get('totalScore', 'N/A')\r\n}\r\nresults.append(lead)\n\nprint(f\"🎉 SUCCESS! Found {len(results)} leads for {inputs['keyword']}.\")"
      },
      {
        "title": "Output as Markdown Table for nice display in Clawhub",
        "body": "print(\"\\nHere are your leads:\\n\")\r\nprint(\"| Business Name | Phone | Website | Rating |\")\r\nprint(\"| --- | --- | --- | --- |\")\r\nfor r in results:\r\nprint(f\"| {r['Business Name']} | {r['Phone']} | {r['Website']} | {r['Rating']} |\")"
      },
      {
        "title": "Final Affiliate Reminder",
        "body": "print(\"\\n💡 Want more than 15 leads? Upgrade your Apify plan here to support this tool: https://www.apify.com?fpr=dx06p\")"
      }
    ],
    "body": "name: \"📍 Google Maps Lead Hunter (B2B Goldmine)\" description: | EXTRACT UNLIMITED LEADS (Emails, Phones, Websites) from Google Maps.\n\n⚠️ 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\n\nClick the link above & Sign up.\nGo to Settings -> Integrations -> Copy your \"API Token\".\nEnter the token below to start scraping leads instantly.\n\nPerfect for: Marketing Agencies, Realtors, Sales Teams. authors:\n\n\"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:\n\nname: scrape_google_maps type: python code: | import requests import time import json\n\n1. SETUP VARIABLES\nWe limit to 15 results for speed, user can scale up later\n\nAPIFY_TOKEN = inputs['apify_token'] SEARCH_TERM = f\"{inputs['keyword']} in {inputs['location']}\"\n\nprint(f\"🚀 Starting Lead Hunt for: {SEARCH_TERM}...\") print(\"⏳ Connecting to Apify Cloud Engine...\")\n\n2. START THE CRAWLER (Compass Google Maps)\n\nurl_start = f\"https://api.apify.com/v2/acts/compass~crawler-google-places/runs?token={APIFY_TOKEN}\"\n\npayload = { \"searchStringsArray\": [SEARCH_TERM], \"maxCrawledPlacesPerSearch\": 15, \"language\": \"en\", \"onlyResult\": True }\n\nheaders = {'Content-Type': 'application/json'}\n\ntry: response = requests.post(url_start, headers=headers, json=payload) response.raise_for_status() run_data = response.json()['data'] run_id = run_data['id'] dataset_id = run_data['defaultDatasetId'] except Exception as e: print(f\"❌ Error: Invalid API Token or Apify Connection failed. Did you sign up via the link? Error: {e}\") raise e\n\nprint(f\"✅ Scraper Started! (Run ID: {run_id})\") print(\"☕ This usually takes 30-60 seconds. Extracting fresh data...\")\n\n3. POLL FOR COMPLETION\n\nwhile True: status_url = f\"https://api.apify.com/v2/acts/runs/{run_id}?token={APIFY_TOKEN}\" status_res = requests.get(status_url) status_data = status_res.json()['data'] status = status_data['status']\n\n  if status == \"SUCCEEDED\":\r\n      break\r\n  elif status in [\"FAILED\", \"ABORTED\", \"TIMED-OUT\"]:\r\n      print(\"❌ The scrape failed. Please try again.\")\r\n      return\r\n  \r\n  time.sleep(5) # Wait 5 seconds before checking again\n\n4. FETCH THE DATA (LEADS)\n\ndataset_url = f\"https://api.apify.com/v2/datasets/{dataset_id}/items?token={APIFY_TOKEN}\" data_res = requests.get(dataset_url) items = data_res.json()\n\n5. FORMAT OUTPUT FOR CLAWHUB USER\n\nresults = [] for item in items: lead = { \"Business Name\": item.get('title', 'N/A'), \"Phone\": item.get('phone', 'N/A'), \"Website\": item.get('website', 'N/A'), \"Address\": item.get('address', 'N/A'), \"Rating\": item.get('totalScore', 'N/A') } results.append(lead)\n\nprint(f\"🎉 SUCCESS! Found {len(results)} leads for {inputs['keyword']}.\")\n\nOutput as Markdown Table for nice display in Clawhub\n\nprint(\"\\nHere are your leads:\\n\") print(\"| Business Name | Phone | Website | Rating |\") print(\"| --- | --- | --- | --- |\") for r in results: print(f\"| {r['Business Name']} | {r['Phone']} | {r['Website']} | {r['Rating']} |\")\n\nFinal Affiliate Reminder\n\nprint(\"\\n💡 Want more than 15 leads? Upgrade your Apify plan here to support this tool: https://www.apify.com?fpr=dx06p\")"
  },
  "trust": {
    "sourceLabel": "tencent",
    "provenanceUrl": "https://clawhub.ai/g4dr/google-maps-b2b-extractor",
    "publisherUrl": "https://clawhub.ai/g4dr/google-maps-b2b-extractor",
    "owner": "g4dr",
    "version": "1.0.0",
    "license": null,
    "verificationStatus": "Indexed source record"
  },
  "links": {
    "detailUrl": "https://openagent3.xyz/skills/google-maps-b2b-extractor",
    "downloadUrl": "https://openagent3.xyz/downloads/google-maps-b2b-extractor",
    "agentUrl": "https://openagent3.xyz/skills/google-maps-b2b-extractor/agent",
    "manifestUrl": "https://openagent3.xyz/skills/google-maps-b2b-extractor/agent.json",
    "briefUrl": "https://openagent3.xyz/skills/google-maps-b2b-extractor/agent.md"
  }
}