Skip to main content

Research LinkedIn prospects before sales calls with Bright Data and GPT-5.4

Workflow preview

Workflow preview
100%
Research LinkedIn prospects before sales calls with Bright Data and GPT-5.4 preview
Open on n8n.io

1. Workflow Overview

Build AI powered pre call intelligence briefs from LinkedIn profiles Automatically scrape LinkedIn profiles for upcoming sales calls, analyze the data with AI, score prospect readiness, and send st...

Best for

  • Lead Generation automation workflows
  • AI Summarization automation workflows
  • advanced n8n builders looking for reusable templates

Tools used

n8n-nodes-base.scheduletrigger, n8n-nodes-base.googlesheets, n8n-nodes-base.httprequest, n8n-nodes-base.code, @n8n/n8n-nodes-langchain.agent, @n8n/n8n-nodes-langchain.lmchatopenai, n8n-nodes-base.if, n8n-nodes-base.gmail

Source and attribution

This workflow is cataloged by N8N Workflows and links back to its original n8n.io source page by Yaron Been.

Original n8n.io source

1.1 Workflow description

Title
Research LinkedIn prospects before sales calls with Bright Data and GPT-5.4
Workflow name
Research LinkedIn prospects before sales calls with Bright Data and GPT-5.4

Build AI-powered pre-call intelligence briefs from LinkedIn profiles

Automatically scrape LinkedIn profiles for upcoming sales calls, analyze the data with AI, score prospect readiness, and send structured pre-call briefs to your inbox.

This workflow reads upcoming call records from Google Sheets, scrapes each prospect's LinkedIn profile with Bright Data, extracts useful talking points and rapport hooks, and uses GPT-5.4 to generate a structured pre-call intelligence brief. It then applies confidence and readiness thresholds to decide whether to send a full brief, a shorter limited-data brief, or log the result for later review.

How it works

  1. A schedule trigger runs the workflow automatically.
  2. The workflow reads upcoming prospect records from a Google Sheet tab called upcoming_calls.
  3. Each LinkedIn profile URL is sent to the Bright Data dataset API for scraping.
  4. The Bright Data response is validated to catch empty results, API errors, and async snapshot responses.
  5. A code step extracts useful sales context such as:
  • career trajectory
  • role tenure
  • skills and tech affinity
  • education signals
  • recent activity themes
  • rapport hooks
  1. GPT-5.4 analyzes the enriched profile data and returns a structured JSON brief with:
  • career trajectory summary
  • recent activity summary
  • 5 tailored talking points
  • likely pain points
  • readiness score
  • recommended approach
  • risk factors
  • self-evaluation metadata
  1. The workflow parses the AI response and checks whether confidence is at least 0.7.
  2. If confidence is too low, the result is written to a low_confidence_briefs sheet for manual review.
  3. If confidence is high enough, the workflow checks whether the readiness score is at least 70.
  4. High-readiness prospects receive a full email brief and are logged to the call_briefs sheet.
  5. Lower-readiness prospects receive a shorter email brief and are also logged to the call_briefs sheet.

Setup

Create a Google Sheet with these tabs:

  • upcoming_calls
  • call_briefs
  • low_confidence_briefs

The upcoming_calls tab should include at least:

  • url
  • meeting_date
  • our_product
  • alert_email (optional)

Then configure the workflow:

  1. Replace YOUR_SPREADSHEET_ID in the Google Sheets nodes with your sheet ID.
  2. Connect Google Sheets via OAuth2.
  3. Add your Bright Data credentials to the HTTP Header Auth used in the LinkedIn scraping node.
  4. Connect your OpenAI account in the GPT-5.4 chat model node.
  5. Connect Gmail via OAuth2 for sending the brief emails.
  6. Optionally set a fallback alert email using the ALERT_EMAIL variable.

Requirements

  • Google Sheets OAuth2 credentials
  • Gmail OAuth2 credentials
  • Bright Data account
  • OpenAI API access for GPT-5.4

Notes

  • This is a demo workflow intended for template and educational use.
  • The Bright Data response validator is built to handle empty results, API errors, and async responses gracefully.
  • The AI node is instructed to return raw JSON only, making the output easier to parse and route.
  • The confidence gate helps prevent unreliable AI output from being emailed.
  • The readiness score gate helps prioritize prospects that are more likely to lead to productive calls.
  • You can adjust the confidence threshold (0.7) and readiness threshold (70) to match your process.
  • The Gmail steps currently send plain-text summaries, which makes the workflow easy to customize.

Good fit for

  • sales teams
  • founders doing outbound
  • agencies preparing for discovery calls
  • account executives who want better call prep
  • RevOps teams building lightweight pre-call research systems

Note: This demo uses the synchronous Bright Data request because it is easier to understand in a template. In real workflows, it is often better to use the async approach. Bright Data’s sync endpoint has a 1 minute timeout, and longer jobs return a snapshot_id instead of final data. A simple way to build the async HTTP node in n8n is to copy Bright Data’s cURL example from your account or docs and convert it into an n8n HTTP Request setup

1.2 Logical Blocks

This catalog entry is organized from the workflow JSON. The node-level section below shows the executable blocks available for review before importing the template.

2. Block-by-Block Analysis

Block 1 - Daily Prospect Research

Type / Role
n8n-nodes-base.scheduleTrigger - scheduleTrigger
Config choices
Version 1.2

Block 2 - Read Upcoming Calls Sheet

Type / Role
n8n-nodes-base.googleSheets - googleSheets
Config choices
Version 4.7

Block 3 - Scrape LinkedIn Profile

Type / Role
n8n-nodes-base.httpRequest - httpRequest
Config choices
Version 4.2

Block 4 - Validate BD Response

Type / Role
n8n-nodes-base.code - code
Config choices
Version 2

Block 5 - Build Call Brief

Type / Role
@n8n/n8n-nodes-langchain.agent - agent
Config choices
Version 3

Block 6 - GPT-5.4 Model

Type / Role
@n8n/n8n-nodes-langchain.lmChatOpenAi - lmChatOpenAi
Config choices
Version 1

Block 7 - Parse AI Output

Type / Role
n8n-nodes-base.code - code
Config choices
Version 2

Block 8 - IF Confidence >= 0.7

Type / Role
n8n-nodes-base.if - if
Config choices
Version 2.2

Block 9 - IF Readiness Score >= 70

Type / Role
n8n-nodes-base.if - if
Config choices
Version 2.2

Block 10 - Email Full Brief

Type / Role
n8n-nodes-base.gmail - gmail
Config choices
Version 2.1

Block 11 - Append Call Briefs

Type / Role
n8n-nodes-base.googleSheets - googleSheets
Config choices
Version 4.7

Block 12 - Email Short Brief

Type / Role
n8n-nodes-base.gmail - gmail
Config choices
Version 2.1

Block 13 - Append Call Briefs Partial

Type / Role
n8n-nodes-base.googleSheets - googleSheets
Config choices
Version 4.7

Block 14 - Append Low Confidence

Type / Role
n8n-nodes-base.googleSheets - googleSheets
Config choices
Version 4.7

Block 15 - Extract Key Talking Points

Type / Role
n8n-nodes-base.code - code
Config choices
Version 2

Block 16 - Filter Valid Data

Type / Role
n8n-nodes-base.if - if
Config choices
Version 2

Block 17 - Sticky Note

Type / Role
n8n-nodes-base.stickyNote - stickyNote
Config choices
Version 1

Block 18 - Sticky Note1

Type / Role
n8n-nodes-base.stickyNote - stickyNote
Config choices
Version 1

Block 19 - Sticky Note2

Type / Role
n8n-nodes-base.stickyNote - stickyNote
Config choices
Version 1

Block 20 - Sticky Note3

Type / Role
n8n-nodes-base.stickyNote - stickyNote
Config choices
Version 1

Block 21 - Sticky Note4

Type / Role
n8n-nodes-base.stickyNote - stickyNote
Config choices
Version 1

3. Summary Table

Workflow Research LinkedIn prospects before sales calls with Bright Data and GPT-5.4
Complexity advanced
Nodes 21
Categories Lead Generation, AI Summarization
Author Yaron Been
Published 11 Apr 2026

4. Reproducing the Workflow from Scratch

  1. 1. Download the workflow JSON

    Use the JSON export at /data/workflows/14986/14986.json as the source template for this automation.

  2. 2. Import the template into n8n

    Open n8n, import the downloaded JSON, and review each node before activating the workflow.

  3. 3. Configure credentials and variables

    Replace placeholder credentials, API keys, webhook URLs, account IDs, and environment-specific values with your own settings.

  4. 4. Test with sample data

    Run the workflow manually or in a staging workspace, inspect node output, and confirm downstream systems receive the expected data.

  5. 5. Activate and monitor

    Enable the workflow only after testing, then monitor executions, errors, and rate limits during the first production runs.

5. General Notes & Resources

Review imported nodes carefully before activation. This catalog entry is intended to help you inspect the workflow structure, understand required services, and find related templates faster.

Node names, credentials, schedules, webhook paths, and external service limits may need adjustment for your workspace.

Frequently asked questions

What does Research LinkedIn prospects before sales calls with Bright Data and GPT-5.4 do?

Build AI powered pre call intelligence briefs from LinkedIn profiles Automatically scrape LinkedIn profiles for upcoming sales calls, analyze the data with AI, score prospect readiness, and send st...

What do I need before importing this workflow?

Review the workflow JSON, configure any required credentials in n8n, and test the automation in a safe workspace before using it in production.

Can I customize this workflow?

Yes. Use the block-by-block analysis and the downloadable JSON to inspect each node, then adjust credentials, prompts, schedules, filters, or destinations for your Lead Generation, AI Summarization use case.