{
  "schemaVersion": "1.0",
  "item": {
    "slug": "apollo-enrichment",
    "name": "Apollo.io Enrichment",
    "source": "tencent",
    "type": "skill",
    "category": "开发工具",
    "sourceUrl": "https://clawhub.ai/capt-marbles/apollo-enrichment",
    "canonicalUrl": "https://clawhub.ai/capt-marbles/apollo-enrichment",
    "targetPlatform": "OpenClaw"
  },
  "install": {
    "downloadMode": "redirect",
    "downloadUrl": "/downloads/apollo-enrichment",
    "sourceDownloadUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=apollo-enrichment",
    "sourcePlatform": "tencent",
    "targetPlatform": "OpenClaw",
    "installMethod": "Manual import",
    "extraction": "Extract archive",
    "prerequisites": [
      "OpenClaw"
    ],
    "packageFormat": "ZIP package",
    "includedAssets": [
      "SKILL.md",
      "apollo.py"
    ],
    "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-23T16:43:11.935Z",
      "expiresAt": "2026-04-30T16:43:11.935Z",
      "httpStatus": 200,
      "finalUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=4claw-imageboard",
      "contentType": "application/zip",
      "probeMethod": "head",
      "details": {
        "probeUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=4claw-imageboard",
        "contentDisposition": "attachment; filename=\"4claw-imageboard-1.0.1.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/apollo-enrichment"
    },
    "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/apollo-enrichment",
    "agentPageUrl": "https://openagent3.xyz/skills/apollo-enrichment/agent",
    "manifestUrl": "https://openagent3.xyz/skills/apollo-enrichment/agent.json",
    "briefUrl": "https://openagent3.xyz/skills/apollo-enrichment/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": "Apollo Enrichment Skill",
        "body": "Enrich contacts and companies using Apollo.io API."
      },
      {
        "title": "Setup",
        "body": "Get your API key from Apollo Settings\nSet the environment variable:\nexport APOLLO_API_KEY=your-api-key-here"
      },
      {
        "title": "Usage",
        "body": "All commands use the bundled apollo.py script in this skill's directory."
      },
      {
        "title": "Enrich a Person",
        "body": "Get email, phone, title, and company data for a contact.\n\n# By email\npython3 apollo.py enrich --email \"john@acme.com\"\n\n# By name + company\npython3 apollo.py enrich --name \"John Smith\" --domain \"acme.com\"\n\n# Include personal email & phone\npython3 apollo.py enrich --email \"john@acme.com\" --reveal-email --reveal-phone"
      },
      {
        "title": "Bulk Enrich People",
        "body": "Enrich up to 10 people in one call.\n\n# From JSON file with array of {email, first_name, last_name, domain}\npython3 apollo.py bulk-enrich --file contacts.json\n\n# Reveal personal contact info\npython3 apollo.py bulk-enrich --file contacts.json --reveal-email --reveal-phone\n\ncontacts.json example:\n\n[\n  {\"email\": \"john@acme.com\"},\n  {\"first_name\": \"Jane\", \"last_name\": \"Doe\", \"domain\": \"techcorp.io\"}\n]"
      },
      {
        "title": "Enrich a Company",
        "body": "Get industry, revenue, employee count, funding data.\n\npython3 apollo.py company --domain \"stripe.com\""
      },
      {
        "title": "Search for People",
        "body": "Find prospects by criteria.\n\n# By title and company\npython3 apollo.py search --titles \"CEO,CTO\" --domain \"acme.com\"\n\n# By title and location\npython3 apollo.py search --titles \"VP Sales\" --locations \"San Francisco\"\n\n# Limit results\npython3 apollo.py search --titles \"Engineer\" --domain \"google.com\" --limit 10\n\n# Exclude competitors (Hathora/Edgegap/Nakama)\npython3 apollo.py search --titles \"CTO\" --exclude-competitors\n\nFiltering Options:\n\n--exclude-competitors or -x — Automatically filters out employees from Hathora, Edgegap, and Nakama (Heroic Labs)"
      },
      {
        "title": "Example Prompts",
        "body": "\"Enrich john@acme.com with Apollo\"\n\"Get company info for stripe.com\"\n\"Find CTOs at fintech companies in NYC\"\n\"Bulk enrich this list of contacts\"\n\"What's the employee count and revenue for Notion?\""
      },
      {
        "title": "Data Returned",
        "body": "Person enrichment:\n\nName, title, headline\nEmail (work & personal)\nPhone (direct & mobile)\nCompany, industry\nLinkedIn URL\nLocation\n\nCompany enrichment:\n\nName, domain, logo\nIndustry, keywords\nEmployee count, revenue\nFunding rounds, investors\nTechnologies used\nSocial links"
      },
      {
        "title": "Credits",
        "body": "Apollo uses credits for enrichment. Check your usage at apollo.io/settings/credits."
      }
    ],
    "body": "Apollo Enrichment Skill\n\nEnrich contacts and companies using Apollo.io API.\n\nSetup\nGet your API key from Apollo Settings\nSet the environment variable:\nexport APOLLO_API_KEY=your-api-key-here\n\nUsage\n\nAll commands use the bundled apollo.py script in this skill's directory.\n\nEnrich a Person\n\nGet email, phone, title, and company data for a contact.\n\n# By email\npython3 apollo.py enrich --email \"john@acme.com\"\n\n# By name + company\npython3 apollo.py enrich --name \"John Smith\" --domain \"acme.com\"\n\n# Include personal email & phone\npython3 apollo.py enrich --email \"john@acme.com\" --reveal-email --reveal-phone\n\nBulk Enrich People\n\nEnrich up to 10 people in one call.\n\n# From JSON file with array of {email, first_name, last_name, domain}\npython3 apollo.py bulk-enrich --file contacts.json\n\n# Reveal personal contact info\npython3 apollo.py bulk-enrich --file contacts.json --reveal-email --reveal-phone\n\n\ncontacts.json example:\n\n[\n  {\"email\": \"john@acme.com\"},\n  {\"first_name\": \"Jane\", \"last_name\": \"Doe\", \"domain\": \"techcorp.io\"}\n]\n\nEnrich a Company\n\nGet industry, revenue, employee count, funding data.\n\npython3 apollo.py company --domain \"stripe.com\"\n\nSearch for People\n\nFind prospects by criteria.\n\n# By title and company\npython3 apollo.py search --titles \"CEO,CTO\" --domain \"acme.com\"\n\n# By title and location\npython3 apollo.py search --titles \"VP Sales\" --locations \"San Francisco\"\n\n# Limit results\npython3 apollo.py search --titles \"Engineer\" --domain \"google.com\" --limit 10\n\n# Exclude competitors (Hathora/Edgegap/Nakama)\npython3 apollo.py search --titles \"CTO\" --exclude-competitors\n\n\nFiltering Options:\n\n--exclude-competitors or -x — Automatically filters out employees from Hathora, Edgegap, and Nakama (Heroic Labs)\nExample Prompts\n\"Enrich john@acme.com with Apollo\"\n\"Get company info for stripe.com\"\n\"Find CTOs at fintech companies in NYC\"\n\"Bulk enrich this list of contacts\"\n\"What's the employee count and revenue for Notion?\"\nData Returned\n\nPerson enrichment:\n\nName, title, headline\nEmail (work & personal)\nPhone (direct & mobile)\nCompany, industry\nLinkedIn URL\nLocation\n\nCompany enrichment:\n\nName, domain, logo\nIndustry, keywords\nEmployee count, revenue\nFunding rounds, investors\nTechnologies used\nSocial links\nCredits\n\nApollo uses credits for enrichment. Check your usage at apollo.io/settings/credits."
  },
  "trust": {
    "sourceLabel": "tencent",
    "provenanceUrl": "https://clawhub.ai/capt-marbles/apollo-enrichment",
    "publisherUrl": "https://clawhub.ai/capt-marbles/apollo-enrichment",
    "owner": "capt-marbles",
    "version": "1.3.0",
    "license": null,
    "verificationStatus": "Indexed source record"
  },
  "links": {
    "detailUrl": "https://openagent3.xyz/skills/apollo-enrichment",
    "downloadUrl": "https://openagent3.xyz/downloads/apollo-enrichment",
    "agentUrl": "https://openagent3.xyz/skills/apollo-enrichment/agent",
    "manifestUrl": "https://openagent3.xyz/skills/apollo-enrichment/agent.json",
    "briefUrl": "https://openagent3.xyz/skills/apollo-enrichment/agent.md"
  }
}