🔓 Unlock all 10,000+ workflows & prompts free Join Newsletter →
✅ Full access unlocked — explore all 10,000 AI workflow and prompt templates Browse Templates →
Home n8n Workflow
January 22, 2026

LinkedIn to Airtable, curated digests with Slack alerts

Lisa Granqvist Partner Workflow Automation Expert

Keeping up with LinkedIn posts sounds simple until you’re tracking more than a few people. Then it turns into tabs, screenshots, half-finished notes, and that nagging feeling you missed something important.

This is the kind of mess community managers feel every day. Content leads and agency owners feel it too, especially when a LinkedIn digest automation would give them one clean place to review, decide, and share.

This workflow collects new posts into Airtable, summarizes them with AI, and alerts your team in Slack. You’ll see what it does, what you need, and how teams use it to curate faster without living on LinkedIn.

How This Automation Works

The full n8n workflow, from trigger to final output:

n8n Workflow Template: LinkedIn to Airtable, curated digests with Slack alerts

The Problem: LinkedIn Monitoring Turns Into Tab Hell

If you’re responsible for “keeping an eye” on a community’s LinkedIn activity, you already know the trap. You start with good intentions. Then you’re bouncing between profiles, trying to remember who posted yesterday, copying links into a doc, and telling yourself you’ll summarize it later. Later rarely happens. And when it does, it’s inconsistent because you’re tired, rushing, or missing context. The real cost isn’t just the time. It’s that you don’t trust your own curation process, so you check everything twice.

It adds up fast. Here’s where it breaks down in real life.

  • Checking 30 profiles manually can burn about 2 hours, and it’s still easy to miss posts from “quiet” members who suddenly pop off.
  • Your “digest” lives in scattered places (notes app, Slack DMs, random Airtable rows), so nobody knows what’s been reviewed.
  • Duplicates creep in because you don’t remember if you already saved that post link last week.
  • By the time you share highlights with your team, the moment is gone and the conversation has moved on.

The Solution: Daily LinkedIn Digests in Airtable With Slack Alerts

This n8n workflow runs on a schedule and scans the LinkedIn profiles you’ve stored in Airtable. For each profile, it pulls posts from yesterday through a LinkedIn data API (via RapidAPI), then extracts the useful bits like the content, author details, timestamps, and engagement metrics. Next, an AI step generates a quick preview so you can scan faster without reading every full post. Before saving anything, the workflow checks Airtable to prevent duplicates, which keeps your database clean over time. Finally, you can route highlights to Slack so your team sees what matters without another manual “daily roundup” task.

The workflow starts on a daily schedule, then loops through each profile in your Airtable list. It waits between API calls using randomized delays (important for rate limits), summarizes posts with OpenAI, and stores structured records so your digest becomes searchable and shareable.

What You Get: Automation vs. Results

Example: What This Looks Like

Say you track 40 community members. If you spend only 3 minutes per profile to check “did they post yesterday?”, that’s about 2 hours per day, and you still haven’t summarized anything. With this workflow, you do roughly 10 minutes of setup once, then each morning you skim an Airtable digest plus Slack highlights in about 15 minutes. Even if the API calls and AI processing take a while in the background, your time stays small and predictable.

What You’ll Need

  • n8n instance (try n8n Cloud free)
  • Self-hosting option if you prefer (Hostinger works well)
  • Airtable for profile lists and stored digests.
  • Slack to notify your team of key highlights.
  • RapidAPI key (Professional Network Data API) (get it from your RapidAPI dashboard)
  • OpenAI API key (get it from the OpenAI API dashboard)

Skill level: Intermediate. You’ll connect accounts, add API keys, and match Airtable fields to the workflow.

Don’t want to set this up yourself? Talk to an automation expert (free 15-minute consultation).

How It Works

A daily run kicks it off. The workflow starts on a schedule, assigns the date window (yesterday), and pulls your profile list from Airtable.

Profiles are processed in batches. n8n loops through each record and uses a randomized pause plus a wait timer so your LinkedIn data requests don’t fire all at once (rate limiting matters here).

Posts are fetched, cleaned, and summarized. For each profile, it pulls recent posts via HTTP Request, checks if there’s anything to process, parses the post details, and then generates a short preview using an AI Agent with the OpenAI chat model and a structured JSON parser.

Airtable becomes your digest database. Before saving, the workflow searches Airtable for an existing post and skips duplicates. New items get saved with consistent fields (content, author, timestamps, engagement) so filtering and sorting stays easy.

You can easily modify Slack alert rules to only ping for high-engagement posts based on likes or comments. See the full implementation guide below for customization options.

Step-by-Step Implementation Guide

Step 1: Configure the Schedule Trigger

Set the workflow to run on a schedule so it automatically checks LinkedIn posts and updates your Airtable digest.

  1. Add and open Scheduled Automation Start.
  2. Configure the schedule rule in Scheduled Automation Start to match your desired run frequency.
  3. Keep the default connection from Scheduled Automation Start to Assign Date Fields.

Step 2: Connect Airtable

Link all Airtable nodes so profile data, community records, and digest records can be searched and created.

  1. Open Retrieve Profile List and set your Airtable Base and Table values.
  2. Credential Required: Connect your airtableTokenApi credentials in Retrieve Profile List.
  3. Open Search Community Base and set the correct Base and Table for community matching.
  4. Credential Required: Connect your airtableTokenApi credentials in Search Community Base.
  5. Open Find Existing Post and set the Airtable Base and Table where posts are stored.
  6. Credential Required: Connect your airtableTokenApi credentials in Find Existing Post.
  7. Open Create Digest Record and set the Airtable Base and Table where new digest entries should be created.
  8. Credential Required: Connect your airtableTokenApi credentials in Create Digest Record.
Make sure all Airtable tables include the fields referenced in Map Post Fields and Create Digest Record, or your workflow may fail when writing records.

Step 3: Set Up LinkedIn Data Retrieval

Prepare date calculations, record iteration, pacing, and the HTTP request used to fetch LinkedIn posts.

  1. In Assign Date Fields, set yesterday to {{ new Date(Date.now() - 24 * 60 * 60 * 1000).toISOString().split('T')[0] }}.
  2. Ensure Retrieve Profile List flows into Iterate Records to process each profile.
  3. Keep Iterate Records connected to Randomized Pause and Idle Step A to control pacing.
  4. In Randomized Pause, keep the provided JavaScript that returns randomized seconds.
  5. In Delay Execution Timer, set Amount to {{ $('Randomized Pause').item.json.seconds }}.
  6. In Fetch Daily LinkedIn Posts, set URL to https://professional-network-data.p.rapidapi.com/get-profile-posts?start=0&username={{ $('Retrieve Profile List').item.json['LinkedIn profile URN'] }}.
  7. In Fetch Daily LinkedIn Posts, set query parameter postedAt to {{ $('Assign Date Fields').item.json.yesterday }}.
⚠️ Common Pitfall: If your HTTP provider requires API keys or headers, add them in Fetch Daily LinkedIn Posts under Options or Headers, or the request will fail.

Step 4: Configure Parsing and Matching Logic

Parse the LinkedIn response, normalize identifiers, validate the data, and map fields for downstream usage.

  1. In Validate Post Presence, keep the condition {{ $json.data && $json.data.length > 0 }} to only process profiles with posts.
  2. In Parse Post Details, keep the JavaScript that extracts post content, author info, and timestamps.
  3. In Normalize Profile URN, set linkedin_profile_clean_urn to {{ $('Parse Post Details').item.json.linkedinProfileUrn.replace('urn:li:fsd_profile:', '') }}.
  4. In Search Community Base, keep Operation as search with Filter by Formula set to =, and adjust your actual filter formula.
  5. In Confirm Community Match, ensure the condition checks {{ $json }} is not empty.
  6. In Map Post Fields, map fields using expressions: {{ $('Parse Post Details').item.json.postContent }}, {{ $json.Name }}, {{ $json['LinkedIn profile URL'] }}, {{ $json['LinkedIn profile URN'] }}, {{ $('Parse Post Details').item.json.postUrl }}, and {{ $('Parse Post Details').item.json.dateCreated }}.

Step 5: Set Up AI Preview Generation

Generate a short preview of each LinkedIn post using the AI chain and structured JSON parser.

  1. Open Generate Post Preview and confirm Text is set to the full prompt with {{ $json.postcontent }} embedded.
  2. Connect OpenAI Chat Engine as the language model for Generate Post Preview and keep the model set to gpt-4o-mini.
  3. Credential Required: Connect your openAiApi credentials in OpenAI Chat Engine.
  4. Keep Structured JSON Parser connected as the output parser for Generate Post Preview with jsonSchemaExample set to { "post_preview": "My top 5 fire tools to help im..." }.
The Structured JSON Parser is an AI sub-node. Add credentials to OpenAI Chat Engine, not to the parser.

Step 6: Configure Deduplication and Record Creation

Check for duplicate posts in Airtable and create new digest records when needed.

  1. In Find Existing Post, ensure Operation is set to search and set a proper Airtable formula in Filter by Formula to match posts.
  2. In Verify Post Duplicate, keep the condition {{ $json }} is not empty to detect existing records.
  3. In Create Digest Record, keep Operation as create and map fields to the appropriate Airtable columns.
  4. Ensure the success path from Verify Post Duplicate routes to Create Digest Record, and the duplicate path routes to Idle Step D.
⚠️ Common Pitfall: An empty or incorrect Airtable Filter by Formula in Find Existing Post will prevent proper deduplication.

Step 7: Test and Activate Your Workflow

Run a manual test to verify that posts are fetched, parsed, previewed, deduplicated, and stored correctly.

  1. Click Execute Workflow and inspect data flowing from Scheduled Automation Start through Create Digest Record.
  2. Confirm that Fetch Daily LinkedIn Posts returns data and that Validate Post Presence routes to Parse Post Details when posts exist.
  3. Verify that Generate Post Preview outputs structured JSON with post_preview and that records appear in Airtable via Create Digest Record.
  4. If everything looks correct, toggle the workflow to Active to run on schedule.
🔒

Unlock Full Step-by-Step Guide

Get the complete implementation guide + downloadable template

Common Gotchas

  • Airtable permissions can block record creation if your token only has read access. If inserts fail, check the base share settings and the connection in n8n credentials first.
  • If you’re using Wait nodes or external rendering, processing times vary. Bump up the wait duration if downstream nodes fail on empty responses.
  • OpenAI prompts in the AI Agent are generic by default, honestly. Add your “what good looks like” (tone, length, what to extract) early or you’ll keep rewriting summaries in Airtable.

Frequently Asked Questions

How long does it take to set up this LinkedIn digest automation automation?

About 45 minutes if your Airtable base and API keys are ready.

Do I need coding skills to automate LinkedIn digest automation?

No. You will connect accounts, paste API keys, and map a few Airtable fields. The only “technical” part is making sure your LinkedIn profile URNs are formatted correctly.

Is n8n free to use for this LinkedIn digest automation workflow?

Yes. n8n has a free self-hosted option and a free trial on n8n Cloud. Cloud plans start at $20/month for higher volume. You’ll also need to factor in API costs like RapidAPI LinkedIn calls (~$0.01-0.05 per profile check) and OpenAI processing (~$0.001-0.01 per post).

Where can I host n8n to run this automation?

Two options: n8n Cloud (managed, easiest setup) or self-hosting on a VPS. For self-hosting, Hostinger VPS is affordable and handles n8n well. Self-hosting gives you unlimited executions but requires basic server management.

Can I customize this LinkedIn digest automation workflow for Slack alerts only on high-engagement posts?

Yes, and it’s a common tweak. You add a simple condition after the workflow parses engagement metrics, then only send Slack messages when likes or comments pass your threshold. You can also route different channels based on topic (for example, product mentions to #product, hiring posts to #talent). If you want, you can store the threshold in Airtable so non-technical teammates can change it without touching n8n.

Why is my Airtable connection failing in this workflow?

Usually it’s permissions or a base/table mismatch. Confirm the Airtable credential in n8n has access to the right workspace, then double-check the table names and field IDs used in the “Retrieve Profile List” and “Create Digest Record” steps. If it worked yesterday and fails today, regenerate the Airtable token and update it in n8n.

How many posts can this LinkedIn digest automation automation handle?

A few thousand posts a month is realistic for most teams, as long as you keep API limits in mind.

Is this LinkedIn digest automation automation better than using Zapier or Make?

Often, yes, because this workflow needs batching, delays, duplicate checks, and structured AI output. Those are all doable in Zapier or Make, but they get expensive or fiddly once you add loops and “find-or-create” logic. n8n also lets you self-host, which is a big deal if you’re scanning lots of profiles daily. If you only track a handful of people and don’t care about deduping, a simple Zap might be fine. If you’re on the fence, Talk to an automation expert and you’ll get a straight recommendation.

Once this is running, LinkedIn monitoring stops being a daily scavenger hunt. Your digest shows up organized, searchable, and ready to share.

Need Help Setting This Up?

Our automation experts can build and customize this workflow for your specific needs. Free 15-minute consultation—no commitment required.

Lisa Granqvist

Workflow Automation Expert

Expert in workflow automation and no-code tools.

×

Use template

Get instant access to this n8n workflow Json file

💬
Get a free quote today!
Get a free quote today!

Tell us what you need and we'll get back to you within one working day.

Get a free quote today!
Get a free quote today!

Tell us what you need and we'll get back to you within one working day.

Launch login modal Launch register modal