在 Clay 里获取 LinkedIn 公司数据

一列网址变成员工数、行业和数字 ID。

Clay 里的一个 HTTP API 列 每家成功的公司 1 个积分 不可访问的公司免费
你能得到什么

你能获得哪些数据?

把一个 HTTP 列指向每个公开的公司 URL。它会填入人们用来筛选的字段,并通过 LinkedIn 数字 ID 与原数据重新关联。无需安装,任何允许 HTTP 丰富的 Clay 套餐都能运行。

规模employeeCount · companySize (区间)分类industry · companyType · founded地点headquarters · locations关联键linkedInId (数字)触达followers · website
2026 年 8 月 12 日从 API 实时获取

真实的公司响应,不是模拟数据

这是一次公司调用为 linkedin.com/company/stripe 返回的确切 JSON,为适应宽度做了删减。它在不到一秒内返回,花费 1 个积分。

// trimmed for width: full locations list, address object, logo and // banner image URLs, similarCompanies detail, and this key's // creditsRemaining removed { "type": "linkedin-company", "url": "https://www.linkedin.com/company/stripe", "tookMs": 863, "accessible": true, "company": { "name": "Stripe", "universalName": "stripe", "linkedInId": "2135371", "tagline": "Help increase the GDP of the internet.", "description": "Stripe builds programmable financial services.", "website": "https://stripe.com", "industry": "Technology, Information and Internet", "employeeCount": 17103, "headquarters": "South San Francisco, California", "companyType": "Privately Held", "founded": "2010", "followers": 1625548, "locations": [ { "formatted": "354 Oyster Point Blvd, South San Francisco, California 94080, US", "countryCode": "US" }, { "formatted": "1 Wilton Park, Wilton Terrace, Dublin, County Dublin D02 FX04, IE", "countryCode": "IE" } ], "similarCompanies": [ { "slug": "atlassian", "linkedinUrl": "https://www.linkedin.com/company/atlassian" }, { "slug": "airbnb", "linkedinUrl": "https://www.linkedin.com/company/airbnb" } ], "linkedinUrl": "https://www.linkedin.com/company/stripe" } }

对于私密或已失效的页面,accessible 为 false,且该行免费。company.linkedInId 是 LinkedIn 永久的数字公司 ID,因此它是把这些数据关联回你其他表格的稳定键。

操作方案

Clay 里的一个 HTTP API 列

CrustAPI 就是一个普通的 HTTP 端点,所以你使用 Clay 自带的 HTTP API 丰富功能。大约两分钟,无需写代码。

  1. 添加丰富项 在你的表格里,点击 Add enrichment,搜索 HTTP API,然后打开 Configure 标签页。
  2. 设置方法和端点 选择 GET,然后把下面的 URL 粘贴到 API endpoint URL。在公司 URL 所在处输入 / 并选择你的列。
  3. 把你的密钥作为请求头加入Header fields 下,添加 X-API-Key 并填入你的密钥。把它保存一次为请求头账户,这样就不会以明文留存。
  4. 选择字段,然后点 TestField paths to return 下列出你想要的内容,例如 company.employeeCount,然后在运行整张表之前,先对一行点 Test
# Clay: Add enrichment → HTTP API → Configure tab Method GET API endpoint URL https://crustapi.com/v1/linkedin?type=company&url=/Company URL Header fields X-API-Key: key_live_xxxx Field paths company.employeeCount, company.industry, company.linkedInId

想先看看数据结构?同一个调用的单行 curl 如下:

curl "https://crustapi.com/v1/linkedin?type=company&url=https://www.linkedin.com/company/stripe" \ -H "x-api-key: YOUR_KEY"
字段映射

把我们的字段映射到 Clay 的列

上面示例中真实的字段路径。把每个 Clay 列指向左侧的路径。

Clay 列响应字段示例中的值
公司名称company.nameStripe
员工数(精确)company.employeeCount17103
行业company.industryTechnology, Information and Internet
总部company.headquartersSouth San Francisco, California
成立年份company.founded2010
关注者company.followers1625548
网站company.websitehttps://stripe.com
LinkedIn 数字 IDcompany.linkedInId2135371
accessible 标志accessibletrue
关于数字 ID

公司调用默认返回 company.linkedInId,无需任何开关(高亮的那一行)。在个人资料调用中,与某个人关联的公司和学校 ID 需要用 companyId=trueschoolId=true 选择性开启。

在接下来两分钟内建好这个列
每月 3,000 个免费积分,无需信用卡。
获取密钥 →
价格

每行要花多少钱?

每一行成功的公司算 1 个积分。返回 accessible: false 的行是免费的,所以杂乱的名单永远不会让账单虚高。

已丰富的行数积分你支付
每月 3,000 行3,0000 美元,免费额度,无需信用卡
25,000 行25,00049 美元(每 1,000 次 1.96 美元)
100,000 行100,000149 美元(每 1,000 次 1.49 美元)
500,000 行500,000549 美元(每 1,000 次 1.10 美元)
2,500,000 行2,500,0001,999 美元(每 1,000 次 0.80 美元)

套餐最高可达 2.5 亿积分,售价 100,000 美元,即每 1,000 次 0.40 美元。价格不含税。

积分为预付且永不过期,所以你为某个 Clay 项目买的套餐,到下一个项目时依然还在。

适合谁

谁在使用这个方案?

相关: LinkedIn Company API · LinkedIn API · 所有集成

在你提问之前

常见问题

点击 Add enrichment,搜索 HTTP API,然后打开 Configure 标签页。选择 GET,粘贴 https://crustapi.com/v1/linkedin?type=company&url=,输入 / 来选择你的公司 URL 列,然后添加一个带有你密钥的 X-API-Key 请求头。在 Field paths to return 下列出你想要的字段,例如 company.employeeCount 和 company.linkedInId,然后点 Test。

是一次 HTTP 调用,我们把话说清楚。CrustAPI 只有一个端点,所以你用 Clay 的 HTTP API 丰富列来接入它,而不是一个原生的 CrustAPI 应用。Clay 里任何能发出 HTTP GET 的东西都能调用它,而且无需安装。

name、universalName、tagline、description、website、industry、companySize、employeeCount、employeeCountRange、headquarters、locations、companyType、founded、followers,以及数字的 linkedInId,全部都是干净的 JSON。在 Field paths to return 下列出你想要的路径。company.linkedInId 是一个永久的数字 ID,因此是做关联时合适的稳定键。

每次成功的公司调用算 1 个积分。Clay 每行运行该列一次,所以你的花费等于返回了公司的行数。accessible 为 false 的行,或已经消失的页面,都是免费的。积分永不过期,免费额度是每月 3,000 个,无需信用卡。

我们只读取公开、登出状态的公司页面,也就是任何人不登录就能打开的同一个页面。我们这边没有任何虚假账号,也没有任何登录。某个网站的条款约束的是它自己登录后的访问;这里返回的,是对任何访客都公开的数据。

适配你的技术栈

今天就丰富你的第一张 Clay 表格

从每月 3,000 个免费积分开始,无需信用卡。添加一个 HTTP API 列,把它指向公司端点,看着员工数、行业和数字 ID 沿着表格一路填满。不可访问的公司不会花你一分钱。

领取 3,000 个免费积分
无需信用卡