跳转到内容

开发者中心

使用经过验证的 B2B 联系人数据进行构建

通过 SalesQL REST API 丰富人员和公司数据,或将我们的 MCP 服务器连接到你已经使用的 AI 工具。

适用于

两种构建方式

相同的验证数据——选择适合你团队的方式。

你可以做什么

API 和 MCP 拥有相同的功能——我们即将推出更多端点。

现已推出
数据丰富——揭示人员和组织的经验证邮箱、电话及其他数据

即将推出

邮箱验证
获客工具/搜索
营销活动/外联

快速开始

在『设置 → API 访问』下创建 API 密钥,然后选择你的路径。

REST API

你的第一次数据丰富——返回可预测的 JSON
面向开发者
bash · 请求
# Enrich a person from a LinkedIn URL
curl -G "https://api-public.salesql.com/v1/persons/enrich" \
  -H "Authorization: Bearer YOUR_API_KEY" \
  --data-urlencode "linkedin_url=https://www.linkedin.com/in/jane-doe"
200 · 响应
{
  "uuid": "daca140a-66e7-4a25-ab17-e66f29160c94",
  "first_name": "Jane",
  "last_name": "Doe",
  "full_name": "Jane Doe",
  "linkedin_url": "https://www.linkedin.com/in/jane-doe",
  "title": "Director of Product",
  "headline": "Director of Product at Acme Corp",
  "industry": "Computer Software",
  "location": "San Francisco, US",
  "emails": [
    { "email": "jane.doe@acme.com", "type": "Work", "status": "Valid" }
  ],
  "phones": [
    { "phone": "+1 415 555 0199", "type": "Mobile" }
  ]
}

MCP Server

一次连接,随时询问
面向 AI 与无代码
bash · 一次性设置
# Add the SalesQL MCP to Claude Code
claude mcp add --transport http salesql \
  https://mcp.salesql.com/mcp \
  --header "Authorization: Bearer YOUR_API_KEY"

然后用自然语言提问

『丰富 linkedin.com/in/jane-doe 并起草一封介绍邮件。』
『找到 Acme 营销副总裁的直拨电话。』
『用经过验证的邮箱丰富这 40 个 LinkedIn URL。』