{
  "schemaVersion": "1.0",
  "item": {
    "slug": "generect",
    "name": "Generect API",
    "source": "tencent",
    "type": "skill",
    "category": "开发工具",
    "sourceUrl": "https://clawhub.ai/vokaplok/generect",
    "canonicalUrl": "https://clawhub.ai/vokaplok/generect",
    "targetPlatform": "OpenClaw"
  },
  "install": {
    "downloadMode": "redirect",
    "downloadUrl": "/downloads/generect",
    "sourceDownloadUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=generect",
    "sourcePlatform": "tencent",
    "targetPlatform": "OpenClaw",
    "installMethod": "Manual import",
    "extraction": "Extract archive",
    "prerequisites": [
      "OpenClaw"
    ],
    "packageFormat": "ZIP package",
    "includedAssets": [
      "SKILL.md",
      "references/api-filters.md",
      "scripts/generect.sh"
    ],
    "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-04-30T16:55:25.780Z",
      "expiresAt": "2026-05-07T16:55:25.780Z",
      "httpStatus": 200,
      "finalUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=network",
      "contentType": "application/zip",
      "probeMethod": "head",
      "details": {
        "probeUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=network",
        "contentDisposition": "attachment; filename=\"network-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/generect"
    },
    "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/generect",
    "agentPageUrl": "https://openagent3.xyz/skills/generect/agent",
    "manifestUrl": "https://openagent3.xyz/skills/generect/agent.json",
    "briefUrl": "https://openagent3.xyz/skills/generect/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": "Generect Live API",
        "body": "Real-time B2B data from LinkedIn, Crunchbase, and AI-powered email discovery.\n\nBase URL: https://api.generect.com\nAuth: Authorization: Token <GENERECT_API_KEY>\nDocs: https://liveapi.generect.com"
      },
      {
        "title": "Setup",
        "body": "Requires GENERECT_API_KEY environment variable. Get a key at https://beta.generect.com"
      },
      {
        "title": "Search Leads by ICP",
        "body": "POST /api/linkedin/leads/by_icp/\n\nFind people by ICP filters. Returns enriched LinkedIn profiles with job history, education, skills.\n\n{\n  \"job_title\": [\"CEO\", \"CTO\"],\n  \"location\": [\"United States\"],\n  \"industry\": [\"Software Development\"],\n  \"company_headcount_range\": [\"11-50\", \"51-200\"],\n  \"page\": 1,\n  \"per_page\": 10\n}\n\nKey filters: job_title, location, industry, company_headcount_range, seniority_level, job_function (arrays). company_name is a string (not array). At least one of company_name, company_link, or company_id is required.\n\nNote: This endpoint queries LinkedIn in real-time and can take 15-60+ seconds to respond.\n\nResponse: { \"amount\": N, \"leads\": [...] } — each lead has full_name, headline, job_title, company_name, company_website, linkedin_url, jobs[], educations[], skills[]."
      },
      {
        "title": "Count Leads by ICP",
        "body": "POST /api/linkedin/leads/count/\n\nEstimate the number of leads matching ICP filters (same body as search, no results returned)."
      },
      {
        "title": "Search Companies by ICP",
        "body": "POST /api/linkedin/companies/by_icp/\n\nFind companies by ICP. Returns company profiles with headcount, industry, location, funding.\n\n{\n  \"industry\": [\"Software Development\"],\n  \"location\": [\"San Francisco\"],\n  \"headcount_range\": [\"51-200\"],\n  \"page\": 1,\n  \"per_page\": 10\n}\n\nKey filters: industry, location, headcount_range, company_type, founded_year_min, founded_year_max, keyword.\n\nResponse: { \"amount\": N, \"companies\": [...] } — each has name, domain, industry, headcount_range, headcount_exact, location, description, linkedin_link, website, founded_year."
      },
      {
        "title": "Count Companies by ICP",
        "body": "POST /api/linkedin/companies/count/\n\nEstimate the number of companies matching ICP filters."
      },
      {
        "title": "Get Lead by LinkedIn URL",
        "body": "POST /api/linkedin/leads/by_link/\n\n{ \"url\": \"https://www.linkedin.com/in/username/\" }\n\nReturns full enriched profile for a specific LinkedIn URL."
      },
      {
        "title": "Get Company by LinkedIn URL",
        "body": "POST /api/linkedin/companies/by_link/\n\n{ \"url\": \"https://www.linkedin.com/company/company-name/\" }\n\nReturns full company profile for a specific LinkedIn company URL."
      },
      {
        "title": "Email Finder (Generate Email)",
        "body": "POST /api/linkedin/email_finder/\n\nAI-powered email discovery from name + domain. Generated emails are automatically validated.\n\n[\n  {\n    \"first_name\": \"John\",\n    \"last_name\": \"Doe\",\n    \"domain\": \"example.com\"\n  }\n]\n\nResponse: { \"email\": \"...\", \"result\": \"valid|risky|invalid\", \"catch_all\": bool, \"valid_email\": \"...\", \"source\": \"...\", \"mx_domain\": \"...\" }"
      },
      {
        "title": "Email Validator",
        "body": "POST /api/linkedin/email_validator/\n\n[{ \"email\": \"john@example.com\" }]\n\nResponse: { \"result\": \"valid|invalid|risky\", \"catch_all\": bool, \"mx_domain\": \"...\", \"exist\": \"yes|no\" }"
      },
      {
        "title": "Get User Info",
        "body": "GET /api/linkedin/user/me/\n\nReturns current user info and balance."
      },
      {
        "title": "Get Transactions",
        "body": "GET /api/linkedin/transactions/\n\nReturns list of API usage transactions."
      },
      {
        "title": "Usage via curl",
        "body": "curl -X POST https://api.generect.com/api/linkedin/leads/by_icp/ \\\n  -H \"Authorization: Token $GENERECT_API_KEY\" \\\n  -H \"Content-Type: application/json\" \\\n  -d '{\"job_title\":[\"VP Sales\"],\"location\":[\"United States\"],\"per_page\":5}'"
      },
      {
        "title": "MCP Server (Alternative)",
        "body": "Generect also provides an MCP server for AI tool integrations:\n\nRemote: mcp-remote https://mcp.generect.com/mcp --header \"Authorization: Bearer Token API_KEY\"\nLocal: npx -y generect-ultimate-mcp@latest with env GENERECT_API_KEY\n\nTools: search_leads, search_companies, generate_email, get_lead_by_url, health"
      },
      {
        "title": "Tips",
        "body": "amount: -1 in response means exact count unavailable; iterate pages until empty\nLeads endpoint is live — each request queries LinkedIn in real-time (may take 5-15s)\nEmail finder uses AI permutations + validation; valid results are safe to send\nCombine lead search → email generation for full prospecting pipeline\nRate limits apply per API key tier"
      }
    ],
    "body": "Generect Live API\n\nReal-time B2B data from LinkedIn, Crunchbase, and AI-powered email discovery.\n\nBase URL: https://api.generect.com Auth: Authorization: Token <GENERECT_API_KEY> Docs: https://liveapi.generect.com\n\nSetup\n\nRequires GENERECT_API_KEY environment variable. Get a key at https://beta.generect.com\n\nEndpoints\nSearch Leads by ICP\n\nPOST /api/linkedin/leads/by_icp/\n\nFind people by ICP filters. Returns enriched LinkedIn profiles with job history, education, skills.\n\n{\n  \"job_title\": [\"CEO\", \"CTO\"],\n  \"location\": [\"United States\"],\n  \"industry\": [\"Software Development\"],\n  \"company_headcount_range\": [\"11-50\", \"51-200\"],\n  \"page\": 1,\n  \"per_page\": 10\n}\n\n\nKey filters: job_title, location, industry, company_headcount_range, seniority_level, job_function (arrays). company_name is a string (not array). At least one of company_name, company_link, or company_id is required.\n\nNote: This endpoint queries LinkedIn in real-time and can take 15-60+ seconds to respond.\n\nResponse: { \"amount\": N, \"leads\": [...] } — each lead has full_name, headline, job_title, company_name, company_website, linkedin_url, jobs[], educations[], skills[].\n\nCount Leads by ICP\n\nPOST /api/linkedin/leads/count/\n\nEstimate the number of leads matching ICP filters (same body as search, no results returned).\n\nSearch Companies by ICP\n\nPOST /api/linkedin/companies/by_icp/\n\nFind companies by ICP. Returns company profiles with headcount, industry, location, funding.\n\n{\n  \"industry\": [\"Software Development\"],\n  \"location\": [\"San Francisco\"],\n  \"headcount_range\": [\"51-200\"],\n  \"page\": 1,\n  \"per_page\": 10\n}\n\n\nKey filters: industry, location, headcount_range, company_type, founded_year_min, founded_year_max, keyword.\n\nResponse: { \"amount\": N, \"companies\": [...] } — each has name, domain, industry, headcount_range, headcount_exact, location, description, linkedin_link, website, founded_year.\n\nCount Companies by ICP\n\nPOST /api/linkedin/companies/count/\n\nEstimate the number of companies matching ICP filters.\n\nGet Lead by LinkedIn URL\n\nPOST /api/linkedin/leads/by_link/\n\n{ \"url\": \"https://www.linkedin.com/in/username/\" }\n\n\nReturns full enriched profile for a specific LinkedIn URL.\n\nGet Company by LinkedIn URL\n\nPOST /api/linkedin/companies/by_link/\n\n{ \"url\": \"https://www.linkedin.com/company/company-name/\" }\n\n\nReturns full company profile for a specific LinkedIn company URL.\n\nEmail Finder (Generate Email)\n\nPOST /api/linkedin/email_finder/\n\nAI-powered email discovery from name + domain. Generated emails are automatically validated.\n\n[\n  {\n    \"first_name\": \"John\",\n    \"last_name\": \"Doe\",\n    \"domain\": \"example.com\"\n  }\n]\n\n\nResponse: { \"email\": \"...\", \"result\": \"valid|risky|invalid\", \"catch_all\": bool, \"valid_email\": \"...\", \"source\": \"...\", \"mx_domain\": \"...\" }\n\nEmail Validator\n\nPOST /api/linkedin/email_validator/\n\n[{ \"email\": \"john@example.com\" }]\n\n\nResponse: { \"result\": \"valid|invalid|risky\", \"catch_all\": bool, \"mx_domain\": \"...\", \"exist\": \"yes|no\" }\n\nGet User Info\n\nGET /api/linkedin/user/me/\n\nReturns current user info and balance.\n\nGet Transactions\n\nGET /api/linkedin/transactions/\n\nReturns list of API usage transactions.\n\nUsage via curl\ncurl -X POST https://api.generect.com/api/linkedin/leads/by_icp/ \\\n  -H \"Authorization: Token $GENERECT_API_KEY\" \\\n  -H \"Content-Type: application/json\" \\\n  -d '{\"job_title\":[\"VP Sales\"],\"location\":[\"United States\"],\"per_page\":5}'\n\nMCP Server (Alternative)\n\nGenerect also provides an MCP server for AI tool integrations:\n\nRemote: mcp-remote https://mcp.generect.com/mcp --header \"Authorization: Bearer Token API_KEY\"\nLocal: npx -y generect-ultimate-mcp@latest with env GENERECT_API_KEY\n\nTools: search_leads, search_companies, generate_email, get_lead_by_url, health\n\nTips\namount: -1 in response means exact count unavailable; iterate pages until empty\nLeads endpoint is live — each request queries LinkedIn in real-time (may take 5-15s)\nEmail finder uses AI permutations + validation; valid results are safe to send\nCombine lead search → email generation for full prospecting pipeline\nRate limits apply per API key tier"
  },
  "trust": {
    "sourceLabel": "tencent",
    "provenanceUrl": "https://clawhub.ai/vokaplok/generect",
    "publisherUrl": "https://clawhub.ai/vokaplok/generect",
    "owner": "vokaplok",
    "version": "1.0.1",
    "license": null,
    "verificationStatus": "Indexed source record"
  },
  "links": {
    "detailUrl": "https://openagent3.xyz/skills/generect",
    "downloadUrl": "https://openagent3.xyz/downloads/generect",
    "agentUrl": "https://openagent3.xyz/skills/generect/agent",
    "manifestUrl": "https://openagent3.xyz/skills/generect/agent.json",
    "briefUrl": "https://openagent3.xyz/skills/generect/agent.md"
  }
}