โ† All skills
Tencent SkillHub ยท Developer Tools

Generect API

Search B2B leads and companies, find/validate emails via Generect Live API. Use when the user needs to find people by job title/company/industry, search companies by ICP, generate business emails from name+domain, or validate email addresses. Covers lead generation, prospecting, enrichment, and email discovery workflows.

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

Search B2B leads and companies, find/validate emails via Generect Live API. Use when the user needs to find people by job title/company/industry, search companies by ICP, generate business emails from name+domain, or validate email addresses. Covers lead generation, prospecting, enrichment, and email discovery workflows.

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

Install for OpenClaw

Quick setup
  1. Download the package from Yavira.
  2. Extract the archive and review SKILL.md first.
  3. Import or place the package into your OpenClaw setup.

Requirements

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

Package facts

Download mode
Yavira redirect
Package format
ZIP package
Source platform
Tencent SkillHub
What's included
SKILL.md, scripts/generect.sh, references/api-filters.md

Validation

  • Use the Yavira download entry.
  • Review SKILL.md after the package is downloaded.
  • Confirm the extracted package contains the expected setup assets.

Install with your agent

Agent handoff

Hand the extracted package to your coding agent with a concrete install brief instead of figuring it out manually.

  1. Download the package from Yavira.
  2. Extract it into a folder your agent can access.
  3. Paste one of the prompts below and point your agent at the extracted folder.
New install

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.

Upgrade existing

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.

Trust & source

Release facts

Source
Tencent SkillHub
Verification
Indexed source record
Version
1.0.0

Documentation

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

Generect Live API

Real-time B2B data from LinkedIn, Crunchbase, and AI-powered email discovery. Base URL: https://api.generect.com Auth: Authorization: Token <GENERECT_API_KEY>

Setup

Requires GENERECT_API_KEY environment variable. Get a key at https://beta.generect.com

Search Leads

POST /api/v1/leads/by_icp/ Find people by ICP filters. Returns enriched LinkedIn profiles with job history, education, skills. { "job_title": ["CEO", "CTO"], "location": ["United States"], "industry": ["Software Development"], "company_headcount_range": ["11-50", "51-200"], "page": 1, "per_page": 10 } Key filters: job_title, location, industry, company_headcount_range, company_name, seniority_level, job_function. All accept arrays. Response: { "amount": N, "leads": [...] } โ€” each lead has full_name, headline, job_title, company_name, company_website, linkedin_url, jobs[], educations[], skills[].

Search Companies

POST /api/v1/companies/by_icp/ Find companies by ICP. Returns company profiles with headcount, industry, location, funding. { "industry": ["Software Development"], "location": ["San Francisco"], "headcount_range": ["51-200"], "page": 1, "per_page": 10 } Key filters: industry, location, headcount_range, company_type, founded_year_min, founded_year_max, keyword. Response: { "amount": N, "companies": [...] } โ€” each has name, domain, industry, headcount_range, headcount_exact, location, description, linkedin_link, website, founded_year.

Get Lead by LinkedIn URL

POST /api/v1/leads/by_url/ { "url": "https://www.linkedin.com/in/username/" } Returns full enriched profile for a specific LinkedIn URL.

Generate Email

POST /api/v1/email_generator/ AI-powered email discovery from name + domain. { "first_name": "John", "last_name": "Doe", "domain": "example.com" } Response: { "email": "...", "result": "valid|risky|invalid", "catch_all": bool }

Validate Email

POST /api/v1/email_validator/ { "email": "john@example.com" } Response: { "result": "valid|invalid|risky", "catch_all": bool, "mx_domain": "...", "exist": "yes|no" }

Usage via curl

curl -X POST https://api.generect.com/api/v1/leads/by_icp/ \ -H "Authorization: Token $GENERECT_API_KEY" \ -H "Content-Type: application/json" \ -d '{"job_title":["VP Sales"],"location":["United States"],"per_page":5}'

MCP Server (Alternative)

Generect also provides an MCP server for AI tool integrations: Remote: mcp-remote https://mcp.generect.com/mcp --header "Authorization: Bearer Token API_KEY" Local: npx -y generect-ultimate-mcp@latest with env GENERECT_API_KEY Tools: search_leads, search_companies, generate_email, get_lead_by_url, health

Tips

amount: -1 in response means exact count unavailable; iterate pages until empty Leads endpoint is live โ€” each request queries LinkedIn in real-time (may take 5-15s) Email generator uses AI permutations + validation; valid results are safe to send Combine lead search โ†’ email generation for full prospecting pipeline Rate limits apply per API key tier

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
2 Docs1 Scripts
  • SKILL.md Primary doc
  • references/api-filters.md Docs
  • scripts/generect.sh Scripts