Help us improve
Share bugs, ideas, or general feedback.
From exa
Exa.ai company and people search for lead generation, competitive intelligence, and data enrichment. Use when searching for companies, finding people profiles, building lead gen tools, or implementing Websets for data collection at scale. Triggers on: Exa company search, Exa people search, category company, lead generation, company research, profile search, LinkedIn profiles, Websets API, data enrichment, company lookup, find companies, competitive intelligence, recruiting, talent search, 1B profiles.
npx claudepluginhub ejirocodes/agent-skills --plugin exaHow this skill is triggered — by the user, by Claude, or both
Slash command
/exa:exa-entitiesThe summary Claude sees in its skill listing — used to decide when to auto-load this skill
| Topic | When to Use | Reference |
Builds targeted company lists for outbound campaigns using Extruct. Use for ICP matching, prospect list creation, competitive research, and lookalike searches.
Discovers entities (companies, people, products) matching natural-language descriptions via CLI. Returns structured lists, not webpages or narrative reports.
Lead generation skill that discovers prospects on LinkedIn, finds emails, researches companies, and enriches contacts using the anysite MCP server. Also supports web scraping and Instagram.
Share bugs, ideas, or general feedback.
| Topic | When to Use | Reference |
|---|---|---|
| Company Search | Finding companies, competitive research | company-search.md |
| People Search | Finding profiles, recruiting | people-search.md |
| Websets | Data collection at scale, monitoring | websets.md |
from exa_py import Exa
exa = Exa()
results = exa.search_and_contents(
"AI startups in healthcare series A funding",
category="company",
num_results=20,
text=True
)
for company in results.results:
print(f"{company.title}: {company.url}")
results = exa.search_and_contents(
"machine learning engineers San Francisco",
category="linkedin_profile",
num_results=20,
text=True
)
for profile in results.results:
print(f"{profile.title}: {profile.url}")
# Create a webset for company collection
webset = exa.websets.create(
name="AI Healthcare Companies",
search_query="AI healthcare startups",
category="company",
max_results=100
)
# Monitor for new matches
exa.websets.add_monitor(
webset_id=webset.id,
schedule="daily"
)
| Category | Use Case | Index Size |
|---|---|---|
company | Company websites, about pages | Millions |
linkedin_profile | Professional profiles | 1B+ profiles |
personal_site | Individual blogs, portfolios | Millions |
github | Repositories, developer profiles | Millions |
category="company" or category="linkedin_profile" for entity searchinclude_domains=["linkedin.com"] for profile-only results