agentsclimarketplace

Explee product enrichment

Skill Sheshiyer/skill-clusters/skills/explee-product-enrichment

Use Explee enrichment APIs to find emails for contacts in single or batch mode and track async task status. USE WHEN a task matches the Craft workspace workflow for explee-product-enrichment.From its SKILL.md

Install
npx -y skills add Sheshiyer/skill-clusters --skill explee-product-enrichment

Assembled from the repository path, not quoted from the project. Check it against their README if it does not work.

One thing to look at

  • 0 stars0 stars. Stars are a popularity signal and not a quality one, but at this level it is likely that nobody has read this closely except its author, and you would be relying on your own review.

SKILL.md

2.0 KB, 479 tokens by cl100k_base, as published. Nobody here has run it

Explee Product Skill — Enrichment

Use this skill for outreach data completion and email finding workflows.

Authentication

Use API key auth:

  • Header: X-API-Key: <api_key>
  • Base URL: https://api.explee.com
export EXPLEE_API_KEY='<your_api_key>'

Primary Endpoints

  • POST /public/api/v1/enrich/email
  • POST /public/api/v1/enrich/email/batch
  • GET /public/api/v1/enrich/email/batch/{task_id}
  • GET /public/api/v1/tasks

Execution Pattern

  1. Use single enrichment for quick checks.
  2. Use batch for scale (up to documented limits).
  3. Poll task endpoint until completed or failed.
  4. Return final structured results and failure reasons.

Request Templates

Single Email Enrichment

curl 'https://api.explee.com/public/api/v1/enrich/email' \
  -X POST \
  -H 'Accept: application/json' \
  -H 'Content-Type: application/json' \
  -H "X-API-Key: ${EXPLEE_API_KEY}" \
  --data '{"first_name":"Ada","last_name":"Lovelace","domain":"example.com","mode":"basic"}'

Batch Enrichment Submit

curl 'https://api.explee.com/public/api/v1/enrich/email/batch' \
  -X POST \
  -H 'Accept: application/json' \
  -H 'Content-Type: application/json' \
  -H "X-API-Key: ${EXPLEE_API_KEY}" \
  --data '{"contacts":[{"first_name":"Ada","last_name":"Lovelace","domain":"example.com"}]}'

Batch Result Poll

curl "https://api.explee.com/public/api/v1/enrich/email/batch/${TASK_ID}" \
  -H 'Accept: application/json' \
  -H "X-API-Key: ${EXPLEE_API_KEY}"

Guardrails

  • Confirm mode (basic vs premium) due to credit differences.
  • Never expose raw API key in final output.
  • For low match rates, suggest improving names/domain quality.

What ships with it

Read from the repository

Just SKILL.md. No reference files, no scripts.

Keep looking

Skills are one crate of 326,506. Ordering is by how many stacks a row turns up in, so the top of any crate is what has actually been picked rather than what has the most stars.