AgentSkillsCN

exa-entities

Exa.ai公司与人物搜索工具,助力潜在客户开发、竞争情报获取与数据丰富化。适用于企业信息检索、人物资料查询、潜在客户开发工具构建,或大规模数据采集Webset的实施。可触发的场景包括:Exa公司搜索、Exa人物搜索、行业分类公司查询、潜在客户开发、公司调研、个人资料搜索、LinkedIn个人资料、Webset API调用、数据丰富化、公司信息查询、企业名录查找、竞争情报分析、招聘与人才搜寻、10亿条人物档案检索。

SKILL.md
--- frontmatter
name: exa-entities
description: "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."
license: MIT
metadata:
  author: ejirocodes
  version: '1.0.0'

Exa Entity Search

Quick Reference

TopicWhen to UseReference
Company SearchFinding companies, competitive researchcompany-search.md
People SearchFinding profiles, recruitingpeople-search.md
WebsetsData collection at scale, monitoringwebsets.md

Essential Patterns

Company Search

python
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}")

People Search

python
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}")

Websets for Lead Generation

python
# 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 Reference

CategoryUse CaseIndex Size
companyCompany websites, about pagesMillions
linkedin_profileProfessional profiles1B+ profiles
personal_siteIndividual blogs, portfoliosMillions
githubRepositories, developer profilesMillions

Common Mistakes

  1. Not using category filter - Always set category="company" or category="linkedin_profile" for entity search
  2. Expecting structured data - Exa returns web pages; parse text for structured fields
  3. Over-broad queries - Add location, industry, or role specifics for better results
  4. Ignoring rate limits - Batch requests and implement backoff for large-scale collection
  5. Missing domain filters - Use include_domains=["linkedin.com"] for profile-only results