提取LinkedIn公司信息
中级
这是一个AI领域的自动化工作流,包含 8 个节点。主要使用 Set, Airtop, FormTrigger, ExecuteWorkflowTrigger 等节点,结合人工智能技术实现智能自动化。 使用Airtop提取LinkedIn公司数据
前置要求
- •AI 服务 API Key(如 OpenAI、Anthropic 等)
分类
工作流预览
可视化展示节点连接关系,支持缩放和平移
导出工作流
复制以下 JSON 配置到 n8n 导入,即可使用此工作流
{
"id": "yWtpgGwGgspx1A1W",
"meta": {
"instanceId": "28a947b92b197fc2524eaba16e57560338657b2b0b5796300b2f1cedc1d0d355",
"templateCredsSetupCompleted": true
},
"name": "提取 LinkedIn 公司信息",
"tags": [],
"nodes": [
{
"id": "cc28eede-9e0b-450f-9637-8bf45aa4046a",
"name": "表单提交时",
"type": "n8n-nodes-base.formTrigger",
"position": [
0,
40
],
"webhookId": "5a5f0133-0b83-4839-bcfb-53499390b99a",
"parameters": {
"options": {},
"formTitle": "Company information",
"formFields": {
"values": [
{
"fieldLabel": "Company's LinkedIn URL",
"placeholder": "https://www.linkedin.com/company/airtop-ai/",
"requiredField": true
},
{
"fieldLabel": "Airtop Profile (connected to Linkedin)",
"requiredField": true
}
]
},
"formDescription": "=This Airtop Studio automation simplifies LinkedIn data extraction by automatically providing structured, reliable, and easily actionable data—saving significant effort, reducing errors, and enabling fast analysis and decision-making."
},
"typeVersion": 2.2
},
{
"id": "2f698c15-0513-49ef-842f-250d7cb10b6a",
"name": "当由另一个工作流执行时",
"type": "n8n-nodes-base.executeWorkflowTrigger",
"position": [
0,
240
],
"parameters": {
"workflowInputs": {
"values": [
{
"name": "company_linkedin"
},
{
"name": "airtop_profile"
}
]
}
},
"typeVersion": 1.1
},
{
"id": "dabdf295-fad9-4069-9408-82d56f1c7ed8",
"name": "统一参数",
"type": "n8n-nodes-base.set",
"position": [
220,
140
],
"parameters": {
"options": {},
"assignments": {
"assignments": [
{
"id": "f4bd4165-2af4-413b-8c47-dbdadda687f0",
"name": "company_linkedin",
"type": "string",
"value": "={{ $json.company_linkedin || $json[\"Company's LinkedIn URL\"] }}"
},
{
"id": "eeb0f94d-750b-407d-a94c-d7aa9a1782f3",
"name": "airtop_profile",
"type": "string",
"value": "={{ $json.airtop_profile || $json[\"Airtop Profile (connected to Linkedin)\"] }}"
}
]
}
},
"typeVersion": 3.4
},
{
"id": "49b490b3-2449-49b2-9447-c789f3c14161",
"name": "提取公司信息",
"type": "n8n-nodes-base.airtop",
"position": [
440,
140
],
"parameters": {
"url": "={{ $json.company_linkedin }}",
"prompt": "=# LinkedIn Company Analysis Prompt\n\nExtract and analyze the following information from the provided LinkedIn company page. Present the results in a structured JSON format.\n\n## Required Data Points\n\n### 1. Company Identity\n- Full company name (including suffixes like Inc., LLC, etc.)\n- Brand tagline/headline (directly under company name)\n- Global headquarters location \n- Company description (full \"About\" section text)\n- Primary website URL (excluding social media links)\n\n### 2. Company Scale\n- Current employee count (from LinkedIn \"X employees\" metric)\n- Employee range bracket: [0-9], [10-150], [150+]\n\n### 3. Business Classification\nEvaluate the following characteristics based on company description, recent posts, and featured content:\n\n#### Automation Agency Status\n- Boolean (true/false) classification\n- Criteria for \"true\":\n * Company explicitly offers automation services to clients\n * Core business model involves developing/implementing automations\n * Primary revenue from automation consulting/development\n\n#### AI Implementation Level\nClassify as [Low/Medium/High] based on:\n- Low: No evidence of AI/automation/scraping usage\n- Medium: Uses AI/automation tools or mentions them as supplementary capabilities\n- High: Core business involves AI development, automation creation, or data harvesting services\n\n### 4. Technical Sophistication\nEvaluate overall technical capabilities as [Basic/Intermediate/Advanced/Expert] based on:\n- Technology stack mentioned\n- Technical job postings\n- Products/services complexity\n- Engineering team size\n- Technical achievements highlighted\n\n### 5. Investment Profile\nIf available, document:\n- Most recent funding round\n- Total funding amount\n- Key investors\n- Last funding date\nMark as \"Not publicly disclosed\" if information unavailable\n\n## Output Format\nReturn data in the following JSON structure, with all fields required, make sure the response contains only the json.\n\n{\n \"company_profile\": {\n \"name\": string,\n \"tagline\": string,\n \"location\": {\n \"city\": string,\n \"state\": string,\n \"country\": string\n },\n \"overview\": string,\n \"website\": string\n },\n \"scale\": {\n \"employee_count\": number,\n \"size_bracket\": string\n },\n \"classification\": {\n \"is_automation_agency\": boolean,\n \"ai_focus_level\": string,\n \"technical_tier\": string\n },\n \"funding\": {\n \"latest_round\": string,\n \"total_raised\": string,\n \"investors\": [string],\n \"last_updated\": string\n }\n}",
"resource": "extraction",
"operation": "query",
"profileName": "={{ $json.airtop_profile }}",
"sessionMode": "new",
"additionalFields": {
"outputSchema": "{\n \"type\": \"object\",\n \"properties\": {\n \"company_profile\": {\n \"type\": \"object\",\n \"properties\": {\n \"name\": {\n \"type\": \"string\",\n \"description\": \"Full company name including suffixes like Inc., LLC, etc.\"\n },\n \"tagline\": {\n \"type\": \"string\",\n \"description\": \"Brand tagline or headline directly under company name.\"\n },\n \"location\": {\n \"type\": \"object\",\n \"properties\": {\n \"city\": {\n \"type\": \"string\"\n },\n \"state\": {\n \"type\": \"string\"\n },\n \"country\": {\n \"type\": \"string\"\n }\n },\n \"required\": [\n \"city\",\n \"state\",\n \"country\"\n ],\n \"additionalProperties\": false,\n \"description\": \"Global headquarters location.\"\n },\n \"overview\": {\n \"type\": \"string\",\n \"description\": \"Full 'About' section text of the company.\"\n },\n \"website\": {\n \"type\": \"string\",\n \"description\": \"Primary website URL excluding social media links.\"\n }\n },\n \"required\": [\n \"name\",\n \"tagline\",\n \"location\",\n \"overview\",\n \"website\"\n ],\n \"additionalProperties\": false\n },\n \"scale\": {\n \"type\": \"object\",\n \"properties\": {\n \"employee_count\": {\n \"type\": \"integer\",\n \"description\": \"Current employee count from LinkedIn 'X employees' metric.\"\n },\n \"size_bracket\": {\n \"type\": \"string\",\n \"description\": \"Employee range bracket.\"\n }\n },\n \"required\": [\n \"employee_count\",\n \"size_bracket\"\n ],\n \"additionalProperties\": false\n },\n \"classification\": {\n \"type\": \"object\",\n \"properties\": {\n \"is_automation_agency\": {\n \"type\": \"boolean\",\n \"description\": \"Boolean classification if the company is an automation agency.\"\n },\n \"ai_focus_level\": {\n \"type\": \"string\",\n \"description\": \"AI implementation level based on company activities.\"\n },\n \"technical_tier\": {\n \"type\": \"string\",\n \"description\": \"Overall technical capabilities.\"\n }\n },\n \"required\": [\n \"is_automation_agency\",\n \"ai_focus_level\",\n \"technical_tier\"\n ],\n \"additionalProperties\": false\n },\n \"funding\": {\n \"type\": \"object\",\n \"properties\": {\n \"latest_round\": {\n \"type\": \"string\",\n \"description\": \"Most recent funding round.\"\n },\n \"total_raised\": {\n \"type\": \"string\",\n \"description\": \"Total funding amount.\"\n },\n \"investors\": {\n \"type\": \"array\",\n \"items\": {\n \"type\": \"string\"\n },\n \"description\": \"Key investors.\"\n },\n \"last_updated\": {\n \"type\": \"string\",\n \"description\": \"Last funding date.\"\n }\n },\n \"required\": [\n \"latest_round\",\n \"total_raised\",\n \"investors\",\n \"last_updated\"\n ],\n \"additionalProperties\": false\n }\n },\n \"required\": [\n \"company_profile\",\n \"scale\",\n \"classification\",\n \"funding\"\n ],\n \"additionalProperties\": false,\n \"$schema\": \"http://json-schema.org/draft-07/schema#\"\n}"
}
},
"credentials": {
"airtopApi": {
"id": "Yi4YPNnovLVUjFn5",
"name": "Airtop Official Org"
}
},
"typeVersion": 1
},
{
"id": "baeb6e4d-da47-4503-a2f9-234ad7aec245",
"name": "便签4",
"type": "n8n-nodes-base.stickyNote",
"position": [
-60,
-60
],
"parameters": {
"width": 400,
"height": 460,
"content": "## 输入参数"
},
"typeVersion": 1
},
{
"id": "7e884f82-249b-4d2e-bbbf-a7391d9fe7b4",
"name": "便签",
"type": "n8n-nodes-base.stickyNote",
"position": [
360,
-60
],
"parameters": {
"color": 4,
"width": 480,
"height": 460,
"content": "## 从 LinkedIn 提取公司信息"
},
"typeVersion": 1
},
{
"id": "cc01b24b-5d27-4500-bb1d-abea5dd67b45",
"name": "## 试试看!",
"type": "n8n-nodes-base.stickyNote",
"position": [
-780,
-580
],
"parameters": {
"width": 700,
"height": 1480,
"content": "README"
},
"typeVersion": 1
},
{
"id": "2173abea-5684-4111-92a9-4c538fa14edc",
"name": "映射输出",
"type": "n8n-nodes-base.set",
"position": [
660,
140
],
"parameters": {
"mode": "raw",
"options": {},
"jsonOutput": "={{ $json.data.modelResponse }}\n"
},
"typeVersion": 3.4
}
],
"active": false,
"pinData": {},
"settings": {
"executionOrder": "v1"
},
"versionId": "d90f923d-0b38-4b5f-b404-c89a6f811d74",
"connections": {
"Unify Params": {
"main": [
[
{
"node": "Extract Company's information",
"type": "main",
"index": 0
}
]
]
},
"On form submission": {
"main": [
[
{
"node": "Unify Params",
"type": "main",
"index": 0
}
]
]
},
"Extract Company's information": {
"main": [
[
{
"node": "Map output",
"type": "main",
"index": 0
}
]
]
},
"When Executed by Another Workflow": {
"main": [
[
{
"node": "Unify Params",
"type": "main",
"index": 0
}
]
]
}
}
}常见问题
如何使用这个工作流?
复制上方的 JSON 配置代码,在您的 n8n 实例中创建新工作流并选择「从 JSON 导入」,粘贴配置后根据需要修改凭证设置即可。
这个工作流适合什么场景?
中级 - 人工智能
需要付费吗?
本工作流完全免费,您可以直接导入使用。但请注意,工作流中使用的第三方服务(如 OpenAI API)可能需要您自行付费。
相关工作流推荐
Airtop网页代理
使用Claude 3.5 Haiku和Airtop浏览器代理自动化网页交互
Set
Slack
Airtop
+8
18 节点Cesar @ Airtop AI
人工智能
X - 线程中的响应
使用Airtop浏览器自动化的X线程自动回复
Set
Wait
Airtop
+3
11 节点Airtop
人工智能
提取LinkedIn个人资料信息
使用Airtop和AI解析提取结构化LinkedIn个人资料数据
Set
Airtop
Form Trigger
+2
6 节点Airtop
销售
LinkedIn帖子互动数据提取器 - 模板
使用Airtop提取LinkedIn帖子互动数据
Set
Code
Airtop
+3
7 节点Airtop
营销
提取X帖子评论
使用Airtop浏览器自动化提取并结构化X帖子评论
Set
Airtop
Form Trigger
+2
7 节点Airtop
营销
获取公司 LinkedIn 页面
使用 Airtop 查找公司 LinkedIn 页面
If
Set
Airtop
+5
16 节点Airtop
销售
工作流信息
难度等级
中级
节点数量8
分类1
节点类型5
作者
Airtop
@cesar-at-airtopAirtop provides an intelligent browser automation API for AI agents, enabling seamless web interaction, including login, navigation, and data extraction from any site, even those with complex authentication - all with natural language instructions.In simple terms, we allow you to automate anything humans can do online, on any site with just words
外部链接
在 n8n.io 查看 →
分享此工作流