EveryInfra.com

社交内容 · 数据 API

LinkedIn

LinkedIn API

公开个人/公司资料、内容搜索与帖子评论。 统一入口 POST /api/v1/social,干净结构化 JSON,¥0.004/次、失败不计费。

8

个能力

¥0.004

每次调用

秒级

响应

1 个

API Key 通 87 平台

LinkedIn 能力清单

action必填参数可选参数单次条数模式单价 / 次返回字段
searchkeyworddate_range, sort默认 10 · 最多 50同步¥0.004id · url · text · author_name · author_username · like_count · comment_count · posted_at · platform
profile_searchkeywordlocation, locations默认 10 · 最多 100同步¥0.004id · username · name · url · headline · location · current_company · current_title · avatar_url · is_premium · is_open_profile · platform
person_profileusernamelocation, locations, name, url同步¥0.004username · display_name · headline · about · location · current_company · follower_count · connection_count · email · is_verified · is_premium · avatar_url · url · platform
company_profilecompanyidentifier, name, url同步¥0.004id · name · universal_name · url · description · tagline · website · industries · specialties · employee_count · follower_count · founded_year · is_verified · headquarters · phone · logo_url · platform
commentsurlnum_comments, num_likes, sort默认 20 · 最多 200异步¥0.004id · text · url · author_name · author_username · author_headline · author_url · like_count · reply_count · is_pinned · is_edited · posted_at · post_url · platform · language
followersusernamechannel同步¥0.004id · username · url · follower_count · following_count · post_count · like_count · connection_count · precision · platform
jobskeywordlocation默认 20 · 最多 200同步¥0.004id · url · title · text · company_name · company_url · company_logo · location · salary · employment_type · seniority · applicant_count · posted_at · platform
employeescompany默认 20 · 最多 200同步¥0.004id · url · name · headline · location · country · country_code · city · avatar_url · is_premium · is_influencer · open_to_work · company_url · platform

返回字段含义

字段名跨 87 个平台统一,同一个键在哪个平台都是同一个意思—— 这也是换平台只需改 platform 一个字段的原因。 机器可读版:/api/v1/social/fields

id
该记录在原平台上的唯一标识。仅在同一平台内唯一,跨平台可能重复。
url
该记录在原平台上的可访问链接。
text
正文内容,已去除 HTML 标签。长文可能被上游截断。
author_name
作者昵称(显示名)。
author_username
作者用户名(@handle),通常可用于拼 URL。
like_count
点赞数。null 表示该平台或该接口不公开此数据,不等于 0。
comment_count
评论数。null 表示不公开,不等于 0。
posted_at
发布时间,ISO 8601 格式、UTC 时区(如 2026-08-07T12:34:56+00:00)。上游只给非标准字符串时原样透传,解析前建议做容错。null 表示平台未公开。
platform
数据来源平台标识,与请求里的 platform 一致(如 xiaohongshu、tiktok)。
username
用户名(@handle)。
name
名称。用于账号/商品/商家类能力,指该对象本身的名字。
location
地理位置描述,原文透传,格式随平台而异。
avatar_url
头像图片链接。部分平台给的是带尺寸参数的 CDN 链接,可能有时效。
display_name
显示名,可能与 username 不同。
follower_count
粉丝数。null 表示不公开,不等于 0。
is_verified
是否为平台认证账号(蓝V等)。null 表示无法判定。
description
简介或描述,通常比 text 短。
website
账号或商家填写的外链网址。
phone
联系电话,原文透传,未做号码格式归一。
author_url
作者在原平台的主页链接。
reply_count
回复数,通常用于评论的子回复。null 表示不公开。
language
内容语言代码(如 zh、en),由上游判定,可能不准。
following_count
关注数。null 表示不公开,不等于 0。
post_count
发布内容总数。null 表示不公开,不等于 0。
title
标题。平台无标题概念时(如纯文本帖)为 null。
country
国家或地区。可能是全称也可能是 ISO 代码,取决于平台,未归一。
city
城市名,用原平台的语言书写,未做中英归一。

另有 LinkedIn 特有字段 headline · current_company · current_title · is_premium · is_open_profile · about · connection_count · email · universal_name · tagline · industries · specialties · employee_count · founded_year · headquarters · logo_url · author_headline · is_pinned · is_edited · post_url · precision · company_name · company_url · company_logo · salary · employment_type · seniority · applicant_count · country_code · is_influencer · open_to_work,保留该平台自身的语义。

30 秒调用示例

linkedin_search.sh
curl -X POST https://api.everyinfra.com/api/v1/social \  -H "Authorization: Bearer omg_live_你的KEY" \  -H "Content-Type: application/json" \  -d '{"platform":"linkedin","action":"search","params":{"keyword":"咖啡"}}'

返回长这样

response.json
{  "id": "linkedin_…",  "search": [    {      "id": "…",      "url": "https://…",      "text": "…",      "author_name": "…",      "author_username": "…",      "like_count": 128,      "comment_count": 128,      "posted_at": "2026-08-01T09:30:00Z",      "platform": "linkedin"    }  ],  "count": 10,  "billing": { "charged": true, "credits": 40, "cny": 0.004 }}

常见用例

关键词监控

按关键词轮询 LinkedIn 的新内容,配合 Gemini 文本 API 做情绪分类与异常波动告警。

评论洞察 / 截流

抓 LinkedIn 的评论区做用户真实反馈分析,或识别高意向留言做互动。

粉丝与关系链

拉 LinkedIn 的粉丝/关注列表,做受众画像与增长归因。

招聘情报

采集 LinkedIn 的岗位数据,追踪竞对扩张方向与用人节奏。

LinkedIn API 常见问题

LinkedIn API 怎么调用?

统一入口 POST /api/v1/social,请求体传 platform="linkedin"、action(见上方能力清单)和 params。鉴权用请求头 Authorization: Bearer <API Key>,同一把 Key 可以调用全部 87 个平台,不需要为每个平台单独申请。

LinkedIn API 怎么收费?

按次计费,¥0.004/次,从统一的 ¥ 钱包扣。一次调用一次计费,不按返回条数或页数加价;参数错误、鉴权失败和空结果都不计费。每次调用的响应里带 billing 字段,写明本次实扣多少。

LinkedIn API 一次能返回多少条数据?

按能力不同,单次最多 200 条(逐能力上限见上方清单的「单次条数」列)。传 limit 参数控制,不传则用默认值。一次调用就返回这么多条,不需要翻页、也不会因为条数多而多收钱。

LinkedIn API 返回哪些字段?

每个能力的返回字段都列在上方能力清单的「返回字段」列里,例如 search 返回 id、url、text、author_name、author_username、like_count 等。字段名跨平台统一,换平台不用改解析代码。

LinkedIn API 的异步能力怎么用?

comments 是异步能力:提交后立即返回 job_id,用 GET /api/v1/jobs/{job_id} 轮询取结果。只在提交时计费一次,轮询免费。

可以先免费试用 LinkedIn API 吗?

可以。注册免费,加微信领邀请码可得 ¥5 免费额度(≈500 次数据调用或 400 次 AI 调用),足够把 LinkedIn 的 8 个能力都试一遍。无需信用卡。

开始调用 LinkedIn API

加微信领 ¥5 免费额度 —— ≈500 次数据调用或 400 次 AI 调用,足够把 LinkedIn 的能力全试一遍。

免费注册 →