Explee product search
Use Explee Search APIs to find companies and people with natural-language targeting and optional AI scoring. USE WHEN a task matches the Craft workspace workflow for explee-product-search.From its SKILL.md
npx -y skills add Sheshiyer/skill-clusters --skill explee-product-searchAssembled 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.1 KB, 522 tokens by cl100k_base, as published. Nobody here has run it
Explee Product Skill — Search
Use this skill for lead generation, ICP targeting, account research, and people discovery.
Authentication
Use API key auth (not cookies):
- Header:
X-API-Key: <api_key> - Base URL:
https://api.explee.com
Recommended shell setup:
export EXPLEE_API_KEY='<your_api_key>'
Primary Endpoints
POST /public/api/v1/search/companiesPOST /public/api/v1/search/companies-by-domainsPOST /public/api/v1/search/peoplePOST /public/api/v1/search/people-by-domainsPOST /public/api/v1/search/nl-to-filters
Execution Pattern
- Start from user goal (ICP, territory, titles, domains).
- If input is vague, call
nl-to-filtersfirst. - Run one search endpoint with a limited result set.
- Return concise rows + next-step recommendation.
Request Templates
NL to Filters
curl 'https://api.explee.com/public/api/v1/search/nl-to-filters' \
-X POST \
-H 'Accept: application/json' \
-H 'Content-Type: application/json' \
-H "X-API-Key: ${EXPLEE_API_KEY}" \
--data '{"definition":"B2B fintech in Europe hiring SDRs"}'
Search Companies
curl 'https://api.explee.com/public/api/v1/search/companies' \
-X POST \
-H 'Accept: application/json' \
-H 'Content-Type: application/json' \
-H "X-API-Key: ${EXPLEE_API_KEY}" \
--data '{"definition":"AI SaaS companies in India"}'
Search People
curl 'https://api.explee.com/public/api/v1/search/people' \
-X POST \
-H 'Accept: application/json' \
-H 'Content-Type: application/json' \
-H "X-API-Key: ${EXPLEE_API_KEY}" \
--data '{"job_titles":["Head of Marketing"],"company_filters":{"definition":"B2B SaaS"}}'
Guardrails
- Do not run huge searches by default; start narrow.
- Call out credit impact before expensive runs.
- Summarize method, endpoint, and status in outputs.
What ships with it
Read from the repository
Just SKILL.md. No reference files, no scripts.