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
npx -y skills add Sheshiyer/skill-clusters --skill explee-product-enrichmentAssembled 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/emailPOST /public/api/v1/enrich/email/batchGET /public/api/v1/enrich/email/batch/{task_id}GET /public/api/v1/tasks
Execution Pattern
- Use single enrichment for quick checks.
- Use batch for scale (up to documented limits).
- Poll task endpoint until
completedorfailed. - 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 (
basicvspremium) 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.