Block 1 - 📋 Workflow Overview
- Type / Role
- n8n-nodes-base.stickyNote - stickyNote
- Config choices
- Version 1
This workflow is provided as-is. Please review and test before using in production.
Extract LinkedIn Group Members to Google Sheets Premium & Verified Only using ConnectSafely.AI API Who's it for This workflow is built for sales professionals, community managers, recruiters, and g...
n8n-nodes-base.stickynote, n8n-nodes-base.manualtrigger, n8n-nodes-base.code, n8n-nodes-base.httprequest, n8n-nodes-base.googlesheets, n8n-nodes-base.noop, n8n-nodes-base.if
This workflow is cataloged by N8N Workflows and links back to its original n8n.io source page by ConnectSafely.
Original n8n.io sourceThis workflow is built for sales professionals, community managers, recruiters, and growth marketers who want to extract high-quality leads from LinkedIn groups without the manual grind. Perfect for anyone who needs to identify decision-makers, founders, and serious professionals within large LinkedIn communities.
If you're running targeted outreach campaigns, building prospect lists, researching competitor communities, or looking to connect with verified industry leaders, this automation filters the noise and delivers only Premium and Verified members straight to your spreadsheet.
The workflow automates LinkedIn group member extraction by combining pagination handling with intelligent filtering through ConnectSafely.ai's API.
The process flow:
The pagination loop handles groups of any size - whether 500 or 50,000 members.
Structure your Google Sheet with the following columns:
| Column Name | Description | Required |
|---|---|---|
Profile ID |
Unique LinkedIn profile identifier | Yes |
First Name |
Member's first name | Yes |
Last Name |
Member's last name | Yes |
Full Name |
Combined first and last name | Yes |
Headline |
Professional headline/tagline | Yes |
Public Identifier |
LinkedIn username | Yes |
Profile URL |
Direct link to LinkedIn profile | Yes |
Follower Count |
Number of followers | Yes |
Is Premium |
Premium subscription status | Yes |
Is Verified |
Verification badge status | Yes |
Relationship Status |
Connection degree (1st, 2nd, 3rd) | Yes |
Pro Tip: The workflow uses "Append or Update" operation with Profile ID as the matching column, so running it multiple times won't create duplicates.
This credential is used by the "Fetch Group Members" HTTP Request node.
Profile ID for deduplicationgroupId variable in the code"9357376" with your target group IDFinding Your Group ID:
linkedin.com/groups/XXXXXXX/// Change this value to your target group
groupId: "9357376", // Replace with your group ID
Edit the filter logic in the Process & Filter Members node to adjust:
isVerified checks to capture only Premium subscribersisPremium checks to capture only Verified profilesreturn statement)// Example: Filter for Premium members with 1000+ followers
const filteredMembers = members.filter(member => {
const isPremium = member.isPremium === true;
const hasMinFollowers = member.followerCount >= 1000;
return isPremium && hasMinFollowers;
});
count value in Initialize Pagination nodeThe API returns more fields than extracted by default. Edit the Process & Filter Members node to include:
creator - Whether they're a LinkedIn creatorbadges - Full list of profile badgesfetchedAt - Timestamp of extractionIssue: Empty results returned
Issue: "401 Unauthorized" errors
Issue: Pagination loop seems infinite
hasMore returns false; large groups may take several minutes to fully processIssue: Duplicate entries in Google Sheets
Profile ID as the matching columnIssue: Missing data in certain columns
Issue: Google Sheets not updating
Stay updated with the latest automation tips, LinkedIn strategies, and platform updates:
Looking to build sophisticated LinkedIn automation workflows tailored to your business needs?
Contact our team for custom automation development, strategy consulting, and enterprise solutions.
We specialize in:
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.
| Workflow | Extract premium & verified LinkedIn group members to Google Sheets with ConnectSafely.AI |
|---|---|
| Complexity | advanced |
| Nodes | 15 |
| Categories | Lead Generation |
| Author | ConnectSafely |
| Published | 03 Dec 2025 |
Use the JSON export at /data/workflows/11450/11450.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.
Extract LinkedIn Group Members to Google Sheets Premium & Verified Only using ConnectSafely.AI API Who's it for This workflow is built for sales professionals, community managers, recruiters, and g...
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 Lead Generation use case.