โ† All skills
Tencent SkillHub ยท Developer Tools

๐Ÿ“ Google Maps B2B Goldmine (Leads Generator)

Extract up to 15 B2B leads with emails, phone numbers, websites, and ratings from Google Maps using your Apify API Token.

skill openclawclawhub Free
0 Downloads
0 Stars
0 Installs
0 Score
High Signal

Extract up to 15 B2B leads with emails, phone numbers, websites, and ratings from Google Maps using your Apify API Token.

โฌ‡ 0 downloads โ˜… 0 stars Unverified but indexed

Install for OpenClaw

Known item issue.

This item's current download entry is known to bounce back to a listing or homepage instead of returning a package file.

Quick setup
  1. Open the source page and confirm the package flow manually.
  2. Review SKILL.md if you can obtain the files.
  3. Treat this source as manual setup until the download is verified.

Requirements

Target platform
OpenClaw
Install method
Manual import
Extraction
Extract archive
Prerequisites
OpenClaw
Primary doc
SKILL.md

Package facts

Download mode
Manual review
Package format
ZIP package
Source platform
Tencent SkillHub
What's included
skill.md

Validation

  • Open the source listing and confirm there is a real package or setup artifact available.
  • Review SKILL.md before asking your agent to continue.
  • Treat this source as manual setup until the upstream download flow is fixed.

Install with your agent

Agent handoff

Use the source page and any available docs to guide the install because the item currently does not return a direct package file.

  1. Open the source page via Open source listing.
  2. If you can obtain the package, extract it into a folder your agent can access.
  3. Paste one of the prompts below and point your agent at the source page and extracted files.
New install

I tried to install a skill package from Yavira, but the item currently does not return a direct package file. Inspect the source page and any extracted docs, then tell me what you can confirm and any manual steps still required.

Upgrade existing

I tried to upgrade a skill package from Yavira, but the item currently does not return a direct package file. Compare the source page and any extracted docs with my current installation, then summarize what changed and what manual follow-up I still need.

Trust & source

Release facts

Source
Tencent SkillHub
Verification
Indexed source record
Version
1.0.0

Documentation

ClawHub primary doc Primary doc: SKILL.md 7 sections Open source page

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 = 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 print(f"โœ… Scraper Started! (Run ID: {run_id})") print("โ˜• This usually takes 30-60 seconds. Extracting fresh data...")

3. POLL FOR COMPLETION

while 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'] if status == "SUCCEEDED": break elif status in ["FAILED", "ABORTED", "TIMED-OUT"]: print("โŒ The scrape failed. Please try again.") return time.sleep(5) # Wait 5 seconds before checking again

4. FETCH THE DATA (LEADS)

dataset_url = f"https://api.apify.com/v2/datasets/{dataset_id}/items?token={APIFY_TOKEN}" data_res = requests.get(dataset_url) items = data_res.json()

5. FORMAT OUTPUT FOR CLAWHUB USER

results = [] 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) print(f"๐ŸŽ‰ SUCCESS! Found {len(results)} leads for {inputs['keyword']}.")

Output as Markdown Table for nice display in Clawhub

print("\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']} |")

Final Affiliate Reminder

print("\n๐Ÿ’ก Want more than 15 leads? Upgrade your Apify plan here to support this tool: https://www.apify.com?fpr=dx06p")

Category context

Code helpers, APIs, CLIs, browser automation, testing, and developer operations.

Source: Tencent SkillHub

Largest current source with strong distribution and engagement signals.

Package contents

Included in package
1 Docs
  • skill.md Docs