Decodo+Google Geminiを活用したLinkedIn人材分析とサマリーの自動化

中級

これは自動化ワークフローで、13個のノードを含みます。主にSet, Code, Merge, GoogleSheets, ManualTriggerなどのノードを使用。 Decodo、Gemini、 Google Sheets を使って LinkedIn タレントプロファイルとサマリー自動化

前提条件
  • Google Sheets API認証情報
  • Google Gemini API Key

カテゴリー

-
ワークフロープレビュー
ノード接続関係を可視化、ズームとパンをサポート
ワークフローをエクスポート
以下のJSON設定をn8nにインポートして、このワークフローを使用できます
{
  "id": "xJoEWpZRp13AAMki",
  "meta": {
    "instanceId": "885b4fb4a6a9c2cb5621429a7b972df0d05bb724c20ac7dac7171b62f1c7ef40",
    "templateCredsSetupCompleted": true
  },
  "name": "Automated LinkedIn Talent Profiling & Summary via Decodo + Google Gemini",
  "tags": [
    {
      "id": "ddPkw7Hg5dZhQu2w",
      "name": "AI",
      "createdAt": "2025-04-13T05:38:08.053Z",
      "updatedAt": "2025-04-13T05:38:08.053Z"
    },
    {
      "id": "ZOwtAMLepQaGW76t",
      "name": "Building Blocks",
      "createdAt": "2025-04-13T15:23:40.462Z",
      "updatedAt": "2025-04-13T15:23:40.462Z"
    },
    {
      "id": "Kujft2FOjmOVQAmJ",
      "name": "Engineering",
      "createdAt": "2025-04-09T01:31:00.558Z",
      "updatedAt": "2025-04-09T01:31:00.558Z"
    },
    {
      "id": "rKOa98eAi3IETrLu",
      "name": "HR",
      "createdAt": "2025-04-13T04:59:30.580Z",
      "updatedAt": "2025-04-13T04:59:30.580Z"
    }
  ],
  "nodes": [
    {
      "id": "4034ac8c-2f0b-492b-a59d-be1019d722f5",
      "name": "ワークフローを実行する際にクリック",
      "type": "n8n-nodes-base.manualTrigger",
      "position": [
        -800,
        -64
      ],
      "parameters": {},
      "typeVersion": 1
    },
    {
      "id": "ce250b96-1d0f-45d6-941b-3ab1fcb5c533",
      "name": "付箋",
      "type": "n8n-nodes-base.stickyNote",
      "position": [
        -800,
        112
      ],
      "parameters": {
        "width": 496,
        "height": 496,
        "content": "## Purpose\n\nAutomatically extract, parse, and analyze LinkedIn profiles to generate structured talent summaries and insights.\n\n### Flow Summary:\n\n- Input: LinkedIn profile URL.\n\n- Decodo: Performs Webscraping of LinkedIn profile by URL\n\n- Google Gemini: Enriches and summarizes data into a professional candidate profile.\n\n- Output: Structured JSON or formatted report ready for ATS or Notion storage.\n\n### Use Case:\nIdeal for recruiters, HR tech apps, or AI-powered hiring agents needing quick, intelligent talent profiling of LinkedIn profile"
      },
      "typeVersion": 1
    },
    {
      "id": "98e14b64-f6c3-44cf-837f-8f220c282f47",
      "name": "Decodo",
      "type": "@decodo/n8n-nodes-decodo.decodo",
      "position": [
        -304,
        -64
      ],
      "parameters": {
        "geo": "={{ $json.geo }}",
        "url": "={{ $json.url }}"
      },
      "credentials": {
        "decodoApi": {
          "id": "7xLvINFuwxDiyBde",
          "name": "Decodo Credentials account"
        }
      },
      "retryOnFail": true,
      "typeVersion": 1
    },
    {
      "id": "3db7159a-dad0-43ab-bd29-2e08191a3457",
      "name": "入力フィールドを設定",
      "type": "n8n-nodes-base.set",
      "position": [
        -544,
        -64
      ],
      "parameters": {
        "options": {},
        "assignments": {
          "assignments": [
            {
              "id": "01a2dade-6674-4158-8303-97a1151d3965",
              "name": "url",
              "type": "string",
              "value": "https://www.linkedin.com/in/ranjan-dailata/"
            },
            {
              "id": "82a8ccde-dc3c-4ed1-b81e-bbcf44a2cf11",
              "name": "geo",
              "type": "string",
              "value": "India"
            }
          ]
        }
      },
      "typeVersion": 3.4
    },
    {
      "id": "5b443a66-7913-49f4-89c9-8a58ef762372",
      "name": "構造化データ抽出ツール",
      "type": "@n8n/n8n-nodes-langchain.chainLlm",
      "position": [
        80,
        -224
      ],
      "parameters": {
        "text": "=Parse and Extract the following content  {{ $json.data.results[0].content }} in JSON Resume Schema",
        "batching": {},
        "messages": {
          "messageValues": [
            {
              "message": "You are an expert resume parser"
            }
          ]
        },
        "promptType": "define"
      },
      "retryOnFail": true,
      "typeVersion": 1.7,
      "alwaysOutputData": true
    },
    {
      "id": "5ed28ee3-0cbf-42c4-be64-d9aecb8314d6",
      "name": "JSON を抽出",
      "type": "n8n-nodes-base.code",
      "position": [
        528,
        -224
      ],
      "parameters": {
        "jsCode": "let text =  $input.first().json.text;\nconst output = [];\n\n// Remove ```json ... ``` or ``` ... ``` wrappers\ntext = text\n      .replace(/```json\\s*/gi, '')\n      .replace(/```/g, '')\n      .trim();\n\n// Parse the cleaned JSON text\nconst parsed = JSON.parse(text);\noutput.push({ json: parsed });\n\nreturn output;"
      },
      "typeVersion": 2
    },
    {
      "id": "1cf7ad6b-473b-44b8-9fd7-f1107039c68e",
      "name": "コンテンツを要約",
      "type": "@n8n/n8n-nodes-langchain.chainLlm",
      "position": [
        80,
        112
      ],
      "parameters": {
        "text": "=Analyze and Summarize the {{ $json.data.results[0].content }}\n\nDo not output your own thoughts or suggestions or recommendations. Instead, just output the summary.",
        "batching": {},
        "messages": {
          "messageValues": [
            {
              "message": "You are an expert summarizer"
            }
          ]
        },
        "promptType": "define"
      },
      "retryOnFail": true,
      "typeVersion": 1.7,
      "alwaysOutputData": true
    },
    {
      "id": "65825d65-86d5-42c5-818f-747b35407d58",
      "name": "要約用 Google Gemini チャットモデル",
      "type": "@n8n/n8n-nodes-langchain.lmChatGoogleGemini",
      "position": [
        80,
        272
      ],
      "parameters": {
        "options": {},
        "modelName": "models/gemini-2.0-flash-exp"
      },
      "credentials": {
        "googlePalmApi": {
          "id": "YeO7dHZnuGBVQKVZ",
          "name": "Google Gemini(PaLM) Api account"
        }
      },
      "typeVersion": 1
    },
    {
      "id": "3a39ce1a-9f66-425b-8c49-b22e4aae1afe",
      "name": "構造化データ用 Google Gemini チャットモデル",
      "type": "@n8n/n8n-nodes-langchain.lmChatGoogleGemini",
      "position": [
        80,
        -64
      ],
      "parameters": {
        "options": {},
        "modelName": "models/gemini-2.0-flash-exp"
      },
      "credentials": {
        "googlePalmApi": {
          "id": "YeO7dHZnuGBVQKVZ",
          "name": "Google Gemini(PaLM) Api account"
        }
      },
      "typeVersion": 1
    },
    {
      "id": "420ca142-d1a2-4196-acab-1780b893c385",
      "name": "付箋1",
      "type": "n8n-nodes-base.stickyNote",
      "position": [
        -800,
        -336
      ],
      "parameters": {
        "color": 7,
        "width": 384,
        "height": 208,
        "content": "![Logo](https://cdn.brandfetch.io/idIeG9_eXK/w/100/h/100/theme/dark/icon.jpeg?c=1bxid64Mup7aczewSAYMX&t=1756483136894)\n\nGoogle Gemini AI for the Structured Data Extraction and Summarization purposes"
      },
      "typeVersion": 1
    },
    {
      "id": "f3c5a8d9-9f11-4f4c-936d-d3327cda88b0",
      "name": "付箋2",
      "type": "n8n-nodes-base.stickyNote",
      "position": [
        -128,
        -304
      ],
      "parameters": {
        "color": 6,
        "width": 608,
        "height": 736,
        "content": "## Data Enrichment "
      },
      "typeVersion": 1
    },
    {
      "id": "e86ebfd4-5e9e-4883-92c4-979af93d4455",
      "name": "マージ",
      "type": "n8n-nodes-base.merge",
      "position": [
        736,
        0
      ],
      "parameters": {},
      "typeVersion": 3.2
    },
    {
      "id": "f767e615-77a1-43dc-967f-a9a74c0289e4",
      "name": "シートに行を追加または更新",
      "type": "n8n-nodes-base.googleSheets",
      "position": [
        992,
        0
      ],
      "parameters": {
        "columns": {
          "value": {
            "profile": "={{ $json.toJsonString()}}"
          },
          "schema": [
            {
              "id": "profile",
              "type": "string",
              "display": true,
              "removed": false,
              "required": false,
              "displayName": "profile",
              "defaultMatch": false,
              "canBeUsedToMatch": true
            },
            {
              "id": "summary",
              "type": "string",
              "display": true,
              "removed": true,
              "required": false,
              "displayName": "summary",
              "defaultMatch": false,
              "canBeUsedToMatch": true
            }
          ],
          "mappingMode": "defineBelow",
          "matchingColumns": [
            "profile"
          ],
          "attemptToConvertTypes": false,
          "convertFieldsToString": false
        },
        "options": {},
        "operation": "appendOrUpdate",
        "sheetName": {
          "__rl": true,
          "mode": "list",
          "value": "gid=0",
          "cachedResultUrl": "https://docs.google.com/spreadsheets/d/1nopL6tWWBydiGqRz4HuyTjbp4D_1to75QNGzLszUV-g/edit#gid=0",
          "cachedResultName": "Sheet1"
        },
        "documentId": {
          "__rl": true,
          "mode": "list",
          "value": "1nopL6tWWBydiGqRz4HuyTjbp4D_1to75QNGzLszUV-g",
          "cachedResultUrl": "https://docs.google.com/spreadsheets/d/1nopL6tWWBydiGqRz4HuyTjbp4D_1to75QNGzLszUV-g/edit?usp=drivesdk",
          "cachedResultName": "LinkedIn Profiling"
        }
      },
      "credentials": {
        "googleSheetsOAuth2Api": {
          "id": "Zjoxh2BUZ6VXGQhA",
          "name": "Google Sheets account"
        }
      },
      "typeVersion": 4.7
    }
  ],
  "active": false,
  "pinData": {},
  "settings": {
    "executionOrder": "v1"
  },
  "versionId": "cd2f9ee6-a590-4bef-8562-0bb39b5db19e",
  "connections": {
    "e86ebfd4-5e9e-4883-92c4-979af93d4455": {
      "main": [
        [
          {
            "node": "f767e615-77a1-43dc-967f-a9a74c0289e4",
            "type": "main",
            "index": 0
          }
        ]
      ]
    },
    "98e14b64-f6c3-44cf-837f-8f220c282f47": {
      "main": [
        [
          {
            "node": "5b443a66-7913-49f4-89c9-8a58ef762372",
            "type": "main",
            "index": 0
          },
          {
            "node": "1cf7ad6b-473b-44b8-9fd7-f1107039c68e",
            "type": "main",
            "index": 0
          }
        ]
      ]
    },
    "5ed28ee3-0cbf-42c4-be64-d9aecb8314d6": {
      "main": [
        [
          {
            "node": "e86ebfd4-5e9e-4883-92c4-979af93d4455",
            "type": "main",
            "index": 0
          }
        ]
      ]
    },
    "1cf7ad6b-473b-44b8-9fd7-f1107039c68e": {
      "main": [
        [
          {
            "node": "e86ebfd4-5e9e-4883-92c4-979af93d4455",
            "type": "main",
            "index": 1
          }
        ]
      ]
    },
    "3db7159a-dad0-43ab-bd29-2e08191a3457": {
      "main": [
        [
          {
            "node": "98e14b64-f6c3-44cf-837f-8f220c282f47",
            "type": "main",
            "index": 0
          }
        ]
      ]
    },
    "5b443a66-7913-49f4-89c9-8a58ef762372": {
      "main": [
        [
          {
            "node": "5ed28ee3-0cbf-42c4-be64-d9aecb8314d6",
            "type": "main",
            "index": 0
          }
        ]
      ]
    },
    "f767e615-77a1-43dc-967f-a9a74c0289e4": {
      "main": [
        []
      ]
    },
    "65825d65-86d5-42c5-818f-747b35407d58": {
      "ai_languageModel": [
        [
          {
            "node": "1cf7ad6b-473b-44b8-9fd7-f1107039c68e",
            "type": "ai_languageModel",
            "index": 0
          }
        ]
      ]
    },
    "4034ac8c-2f0b-492b-a59d-be1019d722f5": {
      "main": [
        [
          {
            "node": "3db7159a-dad0-43ab-bd29-2e08191a3457",
            "type": "main",
            "index": 0
          }
        ]
      ]
    },
    "3a39ce1a-9f66-425b-8c49-b22e4aae1afe": {
      "ai_languageModel": [
        [
          {
            "node": "5b443a66-7913-49f4-89c9-8a58ef762372",
            "type": "ai_languageModel",
            "index": 0
          }
        ]
      ]
    }
  }
}
よくある質問

このワークフローの使い方は?

上記のJSON設定コードをコピーし、n8nインスタンスで新しいワークフローを作成して「JSONからインポート」を選択、設定を貼り付けて認証情報を必要に応じて変更してください。

このワークフローはどんな場面に適していますか?

中級

有料ですか?

このワークフローは完全無料です。ただし、ワークフローで使用するサードパーティサービス(OpenAI APIなど)は別途料金が発生する場合があります。

関連ワークフロー

LinkedIn上の求人情報をDecodoとGPT-4o-miniでクロール&分析
LinkedIn、Decodo、GPT-4o-miniを使って人材のインサイトとデータドリブシングを抽出・分析
Set
Code
Merge
+
Set
Code
Merge
19 ノードRanjan Dailata
人事
Amazon製品の価格下落をBright Dataで抽出・要約・分析
Bright DataとGoogle GeminiでAmazonの価格下落情報を抽出・要約・分析
Set
Wait
Merge
+
Set
Wait
Merge
26 ノードRanjan Dailata
人工知能
Bright DataとGoogle Geminiを使用したGoogle Mapsビジネス情報スクレイピングとリードリッチ化
Bright DataとGoogle Geminiを利用したGoogle Maps企業情報スクレイピングとリードリッチ化ツール
Set
Code
Wait
+
Set
Code
Wait
29 ノードRanjan Dailata
リード獲得
Google Geminiを使用してJotform回答からテーマと感情を自動抽出する
Google Gemini を利用して Jotform への回答からテーマと感情を自動抽出
Code
Merge
Aggregate
+
Code
Merge
Aggregate
14 ノードRanjan Dailata
競合インテリジェンスエージェント:SERP 監視+Thordata+OpenAI 要約インサイト
ライバル戦闘Intelligenceエージェント:SERP監視+Thordata+OpenAI要約洞察
Set
Merge
Google Sheets
+
Set
Merge
Google Sheets
23 ノードRanjan Dailata
市場調査
AIアゲント駆動のProduct Huntデータ抽出と検索(Bright DataとGoogle Geminiを使用)
Bright Data MCPとGoogle Gemini AIを使ってProduct Huntデータをクロールして検索
Set
Function
Mcp Client
+
Set
Function
Mcp Client
21 ノードRanjan Dailata
人工知能
ワークフロー情報
難易度
中級
ノード数13
カテゴリー-
ノードタイプ9
難易度説明

経験者向け、6-15ノードの中程度の複雑さのワークフロー

作成者
Ranjan Dailata

Ranjan Dailata

@ranjancse

A Professional based out of India specialized in handling AI-powered automations. Contact me at ranjancse@gmail.com

外部リンク
n8n.ioで表示

このワークフローを共有

カテゴリー

カテゴリー: 34