Block 1 - Access and extract data from a specific URL
- Type / Role
- @brightdata/n8n-nodes-brightdata.brightData - brightData
- Config choices
- Version 1
This workflow is provided as-is. Please review and test before using in production.
This workflow contains community nodes that are only compatible with the self hosted version of n8n. Overview This workflow connects to LinkedIn via automation nodes and enriches profile data using...
@brightdata/n8n-nodes-brightdata.brightdata, n8n-nodes-base.set, @n8n/n8n-nodes-langchain.informationextractor, @n8n/n8n-nodes-langchain.lmchatgooglegemini, n8n-nodes-base.supabase, n8n-nodes-base.merge, n8n-nodes-base.aggregate, n8n-nodes-base.webhook
This workflow is cataloged by N8N Workflows and links back to its original n8n.io source page by Ranjan Dailata.
Original n8n.io sourceThis workflow contains community nodes that are only compatible with the self-hosted version of n8n.
This workflow connects to LinkedIn via automation nodes and enriches profile data using AI to generate insights such as professional summary, skills highlights, and potential interest areas. All parsed information will be persisted on Supabase for further analysis and reporting purposes.
This workflow is for recruiters, HR tech builders, data analysts, and growth teams who want to:
Automate LinkedIn data collection
Enrich raw profile/job data with AI
Store structured insights for dashboards, CRMs, or analytics
At time of writing, each data enrichment request to Gemini costs ~$0.002–$0.004 USD depending on model. See [Gemini Pricing](Gemini Pricing) for updated info.
The Gemini enrichment model is geo-restricted. If you encounter "model not found," it may not be available in your country.
Scraping via Bright Data carries cost depending on volume. See [Bright Data Pricing](Bright Data Pricing).
Manually extracting insights from LinkedIn is:
Slow → Recruiters spend hours on profile research
Unstructured → Scraping only gives raw HTML/text
Incomplete → No standardized skills or trend insights
This workflow provides a repeatable pipeline that converts raw LinkedIn data into structured, enriched insights stored in Supabase for immediate use.
Webhook by default but it could be updated to trigger manually or it could be scheduled as well
Scrape LinkedIn data via Bright Data API
Clean and normalize profile or job post data
AI Enrichment with Gemini → extract skills, roles, industries, seniority, career paths
Store results in Supabase for querying, dashboards, or API access
Bright Data (LinkedIn scraping API)
Gemini API key (for AI enrichment)
Supabase project (for structured storage)
n8n instance (self-hosted or cloud)
Manual Trigger (replace with webhook or cron if needed)
Bright Data Node (Bright Data API call)
Gemini Node (LLM enrichment)
Supabase Node (insert structured records)
Please create a project on Supabase and use the following script for the creation of a new table and indexes for persisting the LinkedIn data extract or mining information.
CREATE TABLE linkedin_data_mining (
id BIGSERIAL PRIMARY KEY, -- Auto-generated unique ID
loggedin_user TEXT NOT NULL,
-- LinkedIn profile identity fields
first_name TEXT NOT NULL,
last_name TEXT NOT NULL,
title TEXT NOT NULL,
full_name TEXT GENERATED ALWAYS AS (first_name || ' ' || last_name) STORED,
skills JSONB NOT NULL,
basic_profile JSONB NOT NULL,
emerging_roles JSONB NOT NULL,
markdown_content JSONB NOT NULL,
summary JSONB NOT NULL,
-- Audit fields
created_by TEXT NOT NULL,
created_date TIMESTAMP WITH TIME ZONE DEFAULT CURRENT_TIMESTAMP NOT NULL,
updated_by TEXT NULL,
updated_date TIMESTAMP WITH TIME ZONE NULL
);
-- Indexes for performance
CREATE INDEX idx_linkedin_data_mining_full_name ON linkedin_data_mining(full_name);
CREATE INDEX idx_linkedin_data_mining_first_name ON linkedin_data_mining(first_name);
CREATE INDEX idx_linkedin_data_mining_last_name ON linkedin_data_mining(last_name);
CREATE INDEX idx_linkedin_data_mining_skills ON linkedin_data_mining USING GIN (skills);
CREATE INDEX idx_linkedin_data_mining_basic_profile ON linkedin_data_mining USING GIN (basic_profile);
CREATE INDEX idx_linkedin_data_mining_emerging_roles ON linkedin_data_mining USING GIN (emerging_roles);
CREATE INDEX idx_linkedin_data_mining_markdown_content ON linkedin_data_mining USING GIN (markdown_content);
CREATE INDEX idx_linkedin_data_mining_summary ON linkedin_data_mining USING GIN (summary);
Configure your API credentials for Bright Data, Gemini, and Supabase inside n8n’s credentials manager.
Triggers: Replace manual trigger with webhook → scrape & enrich on demand (e.g., when a lead form is submitted).
Prompts: Adjust Gemini prompts to extract attributes like seniority, technologies, career transitions, or hiring signals.
Destinations: Store enriched data in Supabase, or send to Google Sheets, Slack, or HubSpot for immediate team use.
Email: [email protected]
LinkedIn: https://www.linkedin.com/in/ranjan-dailata/
Get Bright Data: Bright Data (Supports free workflows with a small commission)
#LinkedInAutomation #n8n #WebScraping #DataAutomation #BrightData #GeminiAI #Supabase #AIEnrichment #RecruitmentTech #HRTech #SalesAutomation #MarketIntelligence #DataPipeline #WorkflowAutomation #OpenSourceAutomation
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.
Showing the first 24 of 31 workflow blocks. Download the JSON for the full node graph.
| Workflow | Extract & summarize LinkedIn profiles with Bright Data, Google Gemini & Supabase |
|---|---|
| Complexity | advanced |
| Nodes | 31 |
| Categories | AI Summarization, Multimodal AI |
| Author | Ranjan Dailata |
| Published | 17 Aug 2025 |
Use the JSON export at /data/workflows/7519/7519.json as the source template for this automation.
Open n8n, import the downloaded JSON, and review each node before activating the workflow.
Replace placeholder credentials, API keys, webhook URLs, account IDs, and environment-specific values with your own settings.
Run the workflow manually or in a staging workspace, inspect node output, and confirm downstream systems receive the expected data.
Enable the workflow only after testing, then monitor executions, errors, and rate limits during the first production runs.
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.
This workflow contains community nodes that are only compatible with the self hosted version of n8n. Overview This workflow connects to LinkedIn via automation nodes and enriches profile data using...
Review the workflow JSON, configure any required credentials in n8n, and test the automation in a safe workspace before using it in production.
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 AI Summarization, Multimodal AI use case.