Loading...
Loading...
Compare original and translation side by side
STOP — Read before making any API call. enrichx402.com endpoints are not the same as each provider's native API. All paths use the format. You MUST either:https://enrichx402.com/api/{provider}/{action}
- Copy exact URLs from the Quick Reference table below, OR
- Run
to get the correct pathsx402.discover_api_endpoints(url="https://enrichx402.com")Guessing paths will fail with 405 errors (wrong path) or 404 errors (missingprefix)./api/
注意——调用任何API前请仔细阅读。 enrichx402.com的接口与各服务商的原生API并不相同。所有路径均采用格式。您必须:https://enrichx402.com/api/{provider}/{action}
- 从下方快速参考表中复制准确URL,或
- 运行
获取正确路径x402.discover_api_endpoints(url="https://enrichx402.com")猜测路径会导致失败,返回405错误(路径错误)或404错误(缺少前缀)。/api/
| Task | Endpoint | Price | Best For |
|---|---|---|---|
| Enrich person | | $0.0495 | Email/LinkedIn -> full profile |
| Enrich company | | $0.0495 | Domain -> company data |
| Search people | | $0.02 | Find people by criteria |
| Search companies | | $0.02 | Find companies by criteria |
| LinkedIn scrape | | $0.04 | Full LinkedIn profile |
| Contact recovery | | $0.20 | Find missing email/phone |
| Bulk people | | $0.495 | Up to 10 people at once |
| Bulk companies | | $0.495 | Up to 10 companies at once |
| 任务 | 接口 | 价格 | 最佳适用场景 |
|---|---|---|---|
| 个人资料丰富 | | $0.0495 | 通过邮箱/LinkedIn获取完整资料 |
| 公司资料丰富 | | $0.0495 | 通过域名获取公司数据 |
| 人员搜索 | | $0.02 | 根据条件查找人员 |
| 公司搜索 | | $0.02 | 根据条件查找公司 |
| LinkedIn资料抓取 | | $0.04 | 获取完整LinkedIn资料 |
| 联系信息恢复 | | $0.20 | 查找缺失的邮箱/电话 |
| 批量个人处理 | | $0.495 | 一次处理最多10个个人资料 |
| 批量公司处理 | | $0.495 | 一次处理最多10个公司资料 |
x402.get_wallet_infox402.discover_api_endpoints(url="https://enrichx402.com")x402.check_endpoint_schema(url="...")x402.fetchx402.fetch(
url="https://enrichx402.com/api/apollo/people-enrich",
method="POST",
body={"email": "user@company.com"}
)x402.get_wallet_infox402.discover_api_endpoints(url="https://enrichx402.com")x402.check_endpoint_schema(url="...")x402.fetchx402.fetch(
url="https://enrichx402.com/api/apollo/people-enrich",
method="POST",
body={"email": "user@company.com"}
)x402.fetch(
url="https://enrichx402.com/api/apollo/people-enrich",
method="POST",
body={
"email": "john@company.com",
"first_name": "John",
"last_name": "Doe",
"organization_name": "Acme Inc",
"domain": "company.com",
"linkedin_url": "https://linkedin.com/in/johndoe"
}
)emaillinkedin_urlfirst_namelast_nameorganization_namedomainx402.fetch(
url="https://enrichx402.com/api/apollo/people-enrich",
method="POST",
body={
"email": "john@company.com",
"first_name": "John",
"last_name": "Doe",
"organization_name": "Acme Inc",
"domain": "company.com",
"linkedin_url": "https://linkedin.com/in/johndoe"
}
)emaillinkedin_urlfirst_namelast_nameorganization_namedomainx402.fetch(
url="https://enrichx402.com/api/apollo/org-enrich",
method="POST",
body={
"domain": "stripe.com"
}
)x402.fetch(
url="https://enrichx402.com/api/apollo/org-enrich",
method="POST",
body={
"domain": "stripe.com"
}
)x402.fetch(
url="https://enrichx402.com/api/apollo/people-search",
method="POST",
body={
"q_keywords": "software engineer",
"person_titles": ["CTO", "VP Engineering"],
"organization_domains": ["google.com", "meta.com"],
"person_locations": ["San Francisco, CA"]
}
)q_keywordsperson_titlesorganization_domainsperson_locationsperson_senioritiesx402.fetch(
url="https://enrichx402.com/api/apollo/people-search",
method="POST",
body={
"q_keywords": "software engineer",
"person_titles": ["CTO", "VP Engineering"],
"organization_domains": ["google.com", "meta.com"],
"person_locations": ["San Francisco, CA"]
}
)q_keywordsperson_titlesorganization_domainsperson_locationsperson_senioritiesx402.fetch(
url="https://enrichx402.com/api/apollo/org-search",
method="POST",
body={
"q_keywords": "fintech",
"organization_locations": ["New York, NY"],
"organization_num_employees_ranges": ["51-200", "201-500"]
}
)x402.fetch(
url="https://enrichx402.com/api/apollo/org-search",
method="POST",
body={
"q_keywords": "fintech",
"organization_locations": ["New York, NY"],
"organization_num_employees_ranges": ["51-200", "201-500"]
}
)x402.fetch(
url="https://enrichx402.com/api/clado/linkedin-scrape",
method="POST",
body={
"linkedin_url": "https://linkedin.com/in/johndoe"
}
)x402.fetch(
url="https://enrichx402.com/api/clado/linkedin-scrape",
method="POST",
body={
"linkedin_url": "https://linkedin.com/in/johndoe"
}
)x402.fetch(
url="https://enrichx402.com/api/clado/contacts-enrich",
method="POST",
body={
"linkedin_url": "https://linkedin.com/in/johndoe",
"email": "john@example.com"
}
)x402.fetch(
url="https://enrichx402.com/api/clado/contacts-enrich",
method="POST",
body={
"linkedin_url": "https://linkedin.com/in/johndoe",
"email": "john@example.com"
}
)x402.fetch(
url="https://enrichx402.com/api/apollo/people-enrich/bulk",
method="POST",
body={
"people": [
{ "email": "person1@company.com" },
{ "email": "person2@company.com" },
{ "linkedin_url": "https://linkedin.com/in/person3" }
]
}
)x402.fetch(
url="https://enrichx402.com/api/apollo/org-enrich/bulk",
method="POST",
body={
"organizations": [
{ "domain": "company1.com" },
{ "domain": "company2.com" }
]
}
)x402.fetch(
url="https://enrichx402.com/api/apollo/people-enrich/bulk",
method="POST",
body={
"people": [
{ "email": "person1@company.com" },
{ "email": "person2@company.com" },
{ "linkedin_url": "https://linkedin.com/in/person3" }
]
}
)x402.fetch(
url="https://enrichx402.com/api/apollo/org-enrich/bulk",
method="POST",
body={
"organizations": [
{ "domain": "company1.com" },
{ "domain": "company2.com" }
]
}
)body={
"email": "john@company.com",
"excludeFields": ["employment_history", "photos", "phone_numbers"]
}employment_historyphotosphone_numberssocial_profilesbody={
"email": "john@company.com",
"excludeFields": ["employment_history", "photos", "phone_numbers"]
}employment_historyphotosphone_numberssocial_profiles/api/apollo/people-search/api/apollo/people-searchundefinedundefined
Or use bulk endpoints for the best efficiency.
或使用批量接口以获得最佳效率。