From coldiq
Search and enrich people and companies through the ColdIQ marketplace API. Use when finding work or personal emails, finding phone numbers, enriching a person or company, prospecting contacts by title/seniority/location, Sales-Navigator-style filtering, batch enrichment, LinkedIn-URL lookups, or monitoring people/companies for changes. Triggers on "find email", "work email", "personal email", "find phone", "enrich person", "enrich company", "prospect people", "prospect companies", "search people", "search companies", "batch enrich", "find people at company", "LinkedIn lookup", "Sales Navigator list". Do NOT use for sending campaigns (see instantly-api / emailbison), Apollo-specific filter semantics (see apollo-search), pure list dedup (see list-dedup), or buying-signal discovery (see signal-detection).
How this skill is triggered — by the user, by Claude, or both
Slash command
/coldiq:lima-data-apiThe summary Claude sees in its skill listing — used to decide when to auto-load this skill
Find people and companies, enrich them with emails/phones/firmographics, and prospect at
Find people and companies, enrich them with emails/phones/firmographics, and prospect at
scale — all through the ColdIQ marketplace API with one key and unified credits. Native
/v1/coldiq/* endpoints cover find/enrich/prospect/search; /v1/ai-ark/* covers large-database
search.
| Task | Method | Path | Credits | Endpoint ID | Notes |
|---|---|---|---|---|---|
| Find work email (name + domain) | POST | /v1/coldiq/find/work-email | 1 | coldiq.find.work_email | Free if not found |
| Find work email (LinkedIn URL) | POST | /v1/coldiq/find/work-email-linkedin | 3 | coldiq.find.work_email_linkedin | Fallback when domain missing |
| Find personal email | POST | /v1/coldiq/find/personal-email | 5 | coldiq.find.personal_email | Free if not found |
| Find phone | POST | /v1/coldiq/find/phone | 10 | coldiq.find.phone | Free if not found |
| Enrich person | POST | /v1/coldiq/enrich/person | 1–5 | coldiq.enrich.person | LinkedIn=1, name+company=2, personal email=5 |
| Enrich company | POST | /v1/coldiq/enrich/company | 1 | coldiq.enrich.company | Firmographics, funding, tech, traffic |
| Prospect people (filter) | POST | /v1/coldiq/prospect/people/filter | 25 | coldiq.prospect.people.filter | Sales-Nav-style, 25/page |
| Prospect people (SN URL) | POST | /v1/coldiq/prospect/people/search-url | 25 | coldiq.prospect.people.search_url | Paste a Sales Navigator URL |
| Prospect employees of a company | POST | /v1/coldiq/prospect/employees | 25 | coldiq.prospect.employees | Title/location/seniority filters |
| Prospect companies (filter) | POST | /v1/coldiq/prospect/companies/filter | 25 | coldiq.prospect.companies.filter | Firmographic filters |
| Batch prospect people (async) | POST | /v1/coldiq/batch/prospect-people | 1/entity | coldiq.batch.prospect_people | Cheaper at scale; poll results |
| Batch people profiles (async) | POST | /v1/coldiq/batch/people | 1/URL | coldiq.batch.people | LinkedIn URLs → profiles |
| Get batch results | POST | /v1/coldiq/batch/results | free | coldiq.batch.results | Poll every ~60s |
| Autocomplete filter values | POST | /v1/coldiq/references/autocomplete | free | coldiq.references.autocomplete | Resolve titles/industries/etc. |
| Web search | POST | /v1/coldiq/search/web | 0.1 | coldiq.search.web | Google web search |
| Large-scale people search | POST | /v1/ai-ark/people | per result | ai_ark.people.search | 500M profiles; use for big lists |
| Large-scale company search | POST | /v1/ai-ark/companies | per result | ai_ark.companies.search | 70M companies |
https://api.coldiq.com/dashboard/creditsfree_if_not_found)Cheapest-first. Stop at the first hit.
/v1/coldiq/find/work-email · 1 cr · coldiq.find.work_email
{ "full_name": "William Gates", "company_domain": "microsoft.com" }
/v1/coldiq/find/work-email-linkedin · 3 cr · coldiq.find.work_email_linkedin
{ "linkedin_url": "https://linkedin.com/in/williamgates" }
/v1/coldiq/find/personal-email · 5 cr · coldiq.find.personal_emailFind rate is typically 60–70% for work emails. Always verify before sending (see contact-enrichment).
/v1/coldiq/references/autocomplete · free · coldiq.references.autocomplete/v1/coldiq/prospect/people/filter · 25 cr · coldiq.prospect.people.filter
{
"filters": [
{"filter_type": "company", "operator": "in", "values": ["https://linkedin.com/company/microsoft"]},
{"filter_type": "current_title", "operator": "in", "values": ["Chief Marketing Officer"]},
{"filter_type": "location", "operator": "in", "values": ["San Francisco Bay Area"]}
],
"page": 1
}
Common filter types: company, current_title, seniority (Owner / Partner, CXO,
Vice President, Director, Senior), location, industry, company_headcount
(1-10 … 10,001+), function, recently_changed_jobs.
Already have a Sales Navigator search URL? Skip the filter-building:
→ POST /v1/coldiq/prospect/people/search-url · 25 cr · coldiq.prospect.people.search_url
Want everyone at one company? Use the employee finder:
→ POST /v1/coldiq/prospect/employees · 25 cr · coldiq.prospect.employees
For lists above a few hundred, batch is 25× cheaper than live prospecting (1 cr/entity vs 25/page).
/v1/coldiq/batch/prospect-people · 1/entity · coldiq.batch.prospect_people
{ "name": "CMOs at target companies", "filters": [ ... ], "entity_count": 2500,
"notification_url": "https://your-webhook.com/batch-complete" }
completed (pull pages as they finish — don't wait for the whole job).
→ POST /v1/coldiq/batch/results · free · coldiq.batch.resultsStatus flow: pending → processing → completed | failed. See
resources/async-job-pattern.md for the generic poll loop.
To turn a list of LinkedIn profile URLs into full profiles, use
→ POST /v1/coldiq/batch/people · 1/URL · coldiq.batch.people
/v1/coldiq/enrich/person · 1–5 cr · coldiq.enrich.person/v1/coldiq/enrich/company · 1 cr · coldiq.enrich.company| Need | Best | Why |
|---|---|---|
| People at specific companies | coldiq.prospect.people.filter | Sales-Nav-style filters, batch support |
| Very large people lists | ai_ark.people.search | 500M profiles, per-result pricing |
| Apollo-specific filter semantics | apollo-search skill | Apollo's 65+ filters / intent topics |
| Enrich known contact → email | coldiq.find.work_email* | 1 cr name+domain, 3 cr LinkedIn |
| Company firmographics in one call | coldiq.enrich.company | Funding, revenue, tech stack together |
| Web / AI research | coldiq.search.web, coldiq.research.ai_search | 0.1–0.3 cr |
npx claudepluginhub cold-iq/coldiq-marketplace-skills --plugin coldiqGuides creation, editing, and verification of skills for AI coding agents using test-driven development with subagent scenarios. Use when authoring or debugging skills.