LinkedIn 게시물 상호작용 데이터 추출기 - 템플릿
중급
이것은Marketing분야의자동화 워크플로우로, 7개의 노드를 포함합니다.주로 Set, Code, Airtop, FormTrigger, ExecuteWorkflowTrigger 등의 노드를 사용하며. Airtop을 사용하여 LinkedIn 게시물 상호작용 데이터를 추출
사전 요구사항
- •특별한 사전 요구사항 없이 가져와 바로 사용 가능합니다
카테고리
워크플로우 미리보기
노드 연결 관계를 시각적으로 표시하며, 확대/축소 및 이동을 지원합니다
워크플로우 내보내기
다음 JSON 구성을 복사하여 n8n에 가져오면 이 워크플로우를 사용할 수 있습니다
{
"id": "3gPcwtlj06KIygRO",
"meta": {
"instanceId": "28a947b92b197fc2524eaba16e57560338657b2b0b5796300b2f1cedc1d0d355",
"templateCredsSetupCompleted": true
},
"name": "LinkedIn Post Engagement Data Extractor - Template",
"tags": [],
"nodes": [
{
"id": "6b6d54ef-21ad-43ef-be6a-14fc4295577d",
"name": "Airtop",
"type": "n8n-nodes-base.airtop",
"position": [
160,
220
],
"parameters": {
"url": "={{ $json.post_url }}",
"prompt": "You are looking at a LinkedIn post.\nYour job is to extract engagement data from the post.\n\nExtract the information of the people that have commented and reacted to this post. I want their name, their job title and their profile_url.\n\nI also want the total number of reactions, comments and reposts. For each of these values, if you are unable to find it, set it as -1.",
"resource": "extraction",
"operation": "query",
"profileName": "={{ $json.airtop_profile }}",
"sessionMode": "new",
"additionalFields": {
"outputSchema": "{\n \"type\": \"object\",\n \"properties\": {\n \"interactors\": {\n \"type\": \"array\",\n \"items\": {\n \"type\": \"object\",\n \"properties\": {\n \"name\": {\n \"type\": \"string\",\n \"description\": \"The name of the person who commented or reacted.\"\n },\n \"job_title\": {\n \"type\": \"string\",\n \"description\": \"The job title of the person who commented or reacted.\"\n },\n \"profile_url\": {\n \"type\": \"string\",\n \"description\": \"The url of their profile\"\n }\n },\n \"required\": [\n \"name\",\n \"job_title\"\n ],\n \"additionalProperties\": false\n }\n },\n \"reactions_count\": {\n \"type\": \"number\",\n \"description\": \"the number of reactions the post received\"\n },\n \"comments_count\": {\n \"type\": \"number\",\n \"description\": \"the number of comments the post has\"\n },\n \"reposts_count\": {\n \"type\": \"number\",\n \"description\": \"the number of reposts the post has\"\n }\n },\n \"required\": [\n \"interactors\",\n \"reactions_count\",\n \"comments_count\",\n \"reposts_count\"\n ],\n \"additionalProperties\": false,\n \"$schema\": \"http://json-schema.org/draft-07/schema#\"\n}"
}
},
"credentials": {},
"typeVersion": 1
},
{
"id": "463f422f-ee53-4d84-b904-764a69a60f1a",
"name": "반응 분석 응답 파싱",
"type": "n8n-nodes-base.code",
"position": [
380,
220
],
"parameters": {
"jsCode": "const result = JSON.parse($input.first().json.data.modelResponse)\nreturn [{json: {...result}}]"
},
"typeVersion": 2
},
{
"id": "32383187-f2f2-4b00-b7c8-4b7d684e6fc1",
"name": "고정 메모1",
"type": "n8n-nodes-base.stickyNote",
"position": [
-360,
-40
],
"parameters": {
"color": 5,
"width": 900,
"height": 540,
"content": "## Extract engagmenet data\nWith airtop and a simple prompt, the agent is able to extract information from a LinkedIn post like:\n- Amount of comments on the post\n- Amount of reactions on the post\n- Amount of reposts\n- A list of commenters, with their name, job title and profile url"
},
"typeVersion": 1
},
{
"id": "2869efa1-1ca1-44a6-a980-2d901f6cadcf",
"name": "다른 워크플로우에 의해 실행 시",
"type": "n8n-nodes-base.executeWorkflowTrigger",
"position": [
-280,
320
],
"parameters": {
"workflowInputs": {
"values": [
{
"name": "airtop_profile"
},
{
"name": "linkedin_post_url"
}
]
}
},
"typeVersion": 1.1
},
{
"id": "1c593188-6f2f-4182-a9bf-93da8acd0791",
"name": "양식 제출 시",
"type": "n8n-nodes-base.formTrigger",
"position": [
-280,
120
],
"webhookId": "07cf0540-37d2-49c2-a52e-0e985364c843",
"parameters": {
"options": {},
"formTitle": "LinkedIn Post Engagement Data Extractor",
"formFields": {
"values": [
{
"fieldLabel": "Airtop Profile (Logged into Linkedin)",
"requiredField": true
},
{
"fieldLabel": "Post URL",
"requiredField": true
}
]
},
"formDescription": "With this Agent, you'll be able to extract valuable information from a LinkedIn Post, such as number comments, reactions and reposts for a given publication, as well as a list of some of the commenters with their respective titles and profile urls"
},
"typeVersion": 2.2
},
{
"id": "74d20b84-fe2c-4d4f-beab-39d900eba200",
"name": "필드 매핑",
"type": "n8n-nodes-base.set",
"position": [
-60,
220
],
"parameters": {
"options": {},
"assignments": {
"assignments": [
{
"id": "c0dc91e4-64bc-4082-b109-835f061eee4c",
"name": "airtop_profile",
"type": "string",
"value": "={{ $json.airtop_profile || $json[\"Airtop Profile (Logged into Linkedin)\"] }}"
},
{
"id": "afc8f5b2-73bf-4bd0-b98c-458c521c8a0d",
"name": "post_url",
"type": "string",
"value": "={{ $json.linkedin_post_url || $json[\"Post URL\"] }}"
}
]
}
},
"typeVersion": 3.4
},
{
"id": "5f79d197-6e41-4762-9d86-f62ada1e0c85",
"name": "고정 메모",
"type": "n8n-nodes-base.stickyNote",
"position": [
-1400,
-240
],
"parameters": {
"width": 900,
"height": 1260,
"content": "README\n\n# LinkedIn Post Engagement Data Extractor\n\n## Use Case\nThis automation is designed to extract key engagement metrics and audience data from a LinkedIn post. It's useful for analyzing the impact of content and identifying engaged users for lead generation, marketing, or research purposes.\n\n## What It Does\nGiven a LinkedIn post URL and an Airtop profile, this automation extracts:\n\n- Total number of reactions\n- Total number of comments\n- Total number of reposts\n- A list of users who reacted or commented, including:\n - Their full name\n - Their job title\n - A link to their LinkedIn profile\n\n## Input Parameters\n\n| Name | Description | Required |\n|------------------|------------------------------------------------------------|----------|\n| airtop_profile | The name of an [Airtop Profile](https://portal.airtop.ai/browser-profiles) that's logged into LinkedIn | Yes |\n| linkedin_post_url| The full URL of the LinkedIn post you want to analyze | Yes |\n\n## How It Works\n\n1. The workflow starts when triggered manually or from another workflow/form.\n2. It maps input fields for Airtop profile and post URL.\n3. Airtop opens a browser session and loads the LinkedIn post.\n4. An AI agent is instructed to extract engagement data via prompt-based analysis.\n5. The response is parsed and output in a structured format.\n\n## Output Format\n\nThe output will be a structured JSON object with the following fields:\n\n```json\n{\n \"interactors\": [\n {\n \"name\": \"Jane Doe\",\n \"job_title\": \"Marketing Director at ExampleCorp\",\n \"profile_url\": \"https://linkedin.com/in/janedoe\"\n }\n // ... more interactors\n ],\n \"reactions_count\": 153,\n \"comments_count\": 21,\n \"reposts_count\": 8\n}\n"
},
"typeVersion": 1
}
],
"active": false,
"pinData": {},
"settings": {
"executionOrder": "v1"
},
"versionId": "6de86713-894a-42b1-b461-2baa11f343b2",
"connections": {
"6b6d54ef-21ad-43ef-be6a-14fc4295577d": {
"main": [
[
{
"node": "463f422f-ee53-4d84-b904-764a69a60f1a",
"type": "main",
"index": 0
}
]
]
},
"74d20b84-fe2c-4d4f-beab-39d900eba200": {
"main": [
[
{
"node": "6b6d54ef-21ad-43ef-be6a-14fc4295577d",
"type": "main",
"index": 0
}
]
]
},
"1c593188-6f2f-4182-a9bf-93da8acd0791": {
"main": [
[
{
"node": "74d20b84-fe2c-4d4f-beab-39d900eba200",
"type": "main",
"index": 0
}
]
]
},
"2869efa1-1ca1-44a6-a980-2d901f6cadcf": {
"main": [
[
{
"node": "74d20b84-fe2c-4d4f-beab-39d900eba200",
"type": "main",
"index": 0
}
]
]
}
}
}자주 묻는 질문
이 워크플로우를 어떻게 사용하나요?
위의 JSON 구성 코드를 복사하여 n8n 인스턴스에서 새 워크플로우를 생성하고 "JSON에서 가져오기"를 선택한 후, 구성을 붙여넣고 필요에 따라 인증 설정을 수정하세요.
이 워크플로우는 어떤 시나리오에 적합한가요?
중급 - 마케팅
유료인가요?
이 워크플로우는 완전히 무료이며 직접 가져와 사용할 수 있습니다. 다만, 워크플로우에서 사용하는 타사 서비스(예: OpenAI API)는 사용자 직접 비용을 지불해야 할 수 있습니다.
관련 워크플로우 추천
X - 스레드 내 응답
Airtop 브라우저 자동화를 사용한 X 스레드 자동 응답
Set
Wait
Airtop
+
Set
Wait
Airtop
11 노드Airtop
인공지능
X 게시물 댓글 추출
Airtop 브라우저를 사용하여 X 포스트 댓글 자동화 추출 및 구조화
Set
Airtop
Form Trigger
+
Set
Airtop
Form Trigger
7 노드Airtop
마케팅
Airtop 웹 프록시
Claude 3.5 Haiku 및 Airtop 브라우저 에이전트를 사용한 웹 상호작용 자동화
Set
Slack
Airtop
+
Set
Slack
Airtop
18 노드Cesar @ Airtop AI
인공지능
회사 LinkedIn 페이지 가져오기
Airtop을 사용하여 회사 LinkedIn 페이지를 찾습니다.
If
Set
Airtop
+
If
Set
Airtop
16 노드Airtop
영업
LinkedIn 개인 프로필 발견 및 확인
Airtop을 사용하여 LinkedIn 개인 프로필을 찾아 확인
Set
Airtop
Filter
+
Set
Airtop
Filter
9 노드Airtop
영업
리스트 구축 도구
사용법 Airtop과 Google Sheets를 사용하여 모든 플랫폼에서 프로필 목록을 구축
Set
Code
Airtop
+
Set
Code
Airtop
7 노드Cesar @ Airtop AI
영업
워크플로우 정보
난이도
중급
노드 수7
카테고리1
노드 유형6
저자
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에서 보기 →
이 워크플로우 공유