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.