Back to Blog
Research

What Is a Good Engagement Rate on LinkedIn in 2026? (Based on 40,000+ Profiles)

May 2, 2026
8 min read
S
By SociaVault Team
LinkedInEngagement RateBenchmarksResearchLinkedIn MarketingSociaVault Labs

What Is a Good Engagement Rate on LinkedIn in 2026?

The median engagement rate on LinkedIn is 3.16% — and it's the only major platform where engagement has grown for two consecutive years.

That number needs context, though. LinkedIn's engagement rate formula is different from other platforms, the formats matter enormously (a text post and a carousel are not the same thing), and niche plays a bigger role here than almost anywhere else.

These benchmarks come from SociaVault Labs' analysis of 40,000+ LinkedIn profiles, part of our broader 350,000-account cross-platform engagement study published in 2026.


LinkedIn Engagement Rate Formula

LinkedIn ER = (Reactions + Comments + Reposts) / Impressions × 100

LinkedIn uses impressions as the denominator, not follower count. This makes LinkedIn ER comparable across account sizes — a creator with 5,000 connections and one with 500,000 are measured against how many people actually saw the post.

Some tools calculate ER using followers instead of impressions. If you see wildly different numbers elsewhere, that's usually why. We use impressions because it's what LinkedIn's own analytics reports.


LinkedIn Engagement Rate by Follower/Connection Tier

TierConnections/FollowersMedian ER25th Pctl75th Pctl
Nano1K–5K5.42%3.21%8.14%
Micro5K–25K3.87%2.54%5.63%
Mid25K–100K2.74%1.83%4.02%
Macro100K–500K1.89%1.14%2.94%
Mega500K+1.08%0.67%1.74%

What the tiers tell you

The nano advantage on LinkedIn is the steepest of any platform we measured: 5.0×. A creator with 3,000 connections gets roughly five times the engagement rate of someone with 500,000 followers. This is the inverse of what most people expect.

Why? Two reasons. First, smaller LinkedIn accounts tend to have tighter, more relevant networks — connections actually know each other and engage with each other's content. Second, LinkedIn's algorithm strongly rewards accounts where a high percentage of the audience engages early (the first 30–60 minutes), which is far easier to achieve with 3,000 relevant connections than with 500,000 passive followers.

Macro and mega accounts at 1.08–1.89% should not be compared to platforms where those percentages would be considered weak. At these sizes, LinkedIn's impressions-based denominator means you're reaching hundreds of thousands of people — a 1.08% ER on a post that reached 1,000,000 impressions is 10,800 real interactions. That's meaningful.


LinkedIn Engagement by Post Format

Format matters more on LinkedIn than almost any other platform:

FormatMedian ERvs. Average
Document / Carousel5.13%+62%
Text post (long-form)3.29%+4%
Native video3.04%-4%
Image post2.47%-22%
Text post (short)2.18%-31%
Poll1.86%-41%
External link post1.12%-65%

Document posts (carousels) dramatically outperform everything else. LinkedIn's algorithm treats documents as high-value content — users spend more dwell time scrolling through slides, and that time-on-post signal gets amplified. A well-made 10-slide carousel can achieve 2–3× the reach of an equivalent text post.

External links get buried. Posts with external URLs in the body are suppressed by LinkedIn's algorithm. This is well-documented. If you need to share a link, put it in the first comment — not the post body. The difference is stark: 1.12% vs 3.29% for otherwise similar content.

Polls look attractive but underperform. Polls generate click interactions that LinkedIn counts differently from reactions and comments. The quick poll tap rarely converts to the deeper engagement (comments, reposts) that actually extends reach.


LinkedIn Engagement by Content Niche

RankNicheMedian ER
1Career Advice & Job Tips5.24%
2Leadership & Management4.83%
3Entrepreneurship & Startups4.41%
4Technology & AI4.18%
5Sales & Marketing3.74%
6Finance & Investing3.12%
7Education & Learning2.94%
8HR & Recruiting2.87%
9Design & Creative2.43%
10Corporate News1.62%

Career content dominates. LinkedIn users are fundamentally there for professional development, job opportunities, and career signaling. Content that directly serves those goals gets disproportionate engagement — people share "how to negotiate salary" posts because they want their network to see them engaging with professional growth content.

Corporate news sits at the bottom. Company announcements, product launches, and corporate updates average 1.62% — well below the platform median. These posts get low engagement because they serve the poster's interests more than the reader's. LinkedIn's algorithm has learned this.

AI content is currently elevated. Technology and AI content is running above its historical average as the topic dominates professional discourse. This will likely normalize over the next 12–18 months as the topic matures.


Year-over-Year: LinkedIn Is the Only Growing Platform

YearMedian ERChange
20242.82%
20252.96%+5.0%
20263.16%+6.8%

LinkedIn's engagement rate has grown +12.1% over two years while every other major platform has declined:

  • TikTok: -8.0% YoY
  • Instagram: -6.7% YoY
  • Twitter/X: -9.0% YoY

The structural reason: LinkedIn's creator-to-consumer ratio is still low. Most users scroll but rarely post. Less content competing for feed attention means higher engagement per post. As the platform pushes creator features (newsletters, live video, collaborative articles), this may normalize — but for now, the window is open.


What "Good" Looks Like in Practice

Engagement RateVerdict
Above 5%Exceptional — algorithm favorite
3–5%Strong — above platform median
1.5–3%Average — normal for most account sizes
0.5–1.5%Below average — review content strategy
Under 0.5%Poor — likely suppressed by algorithm or audience mismatch

These bands apply differently by account size. A 2% ER for a 500K+ follower account is normal. A 2% ER for a 3,000-connection account is below average and worth investigating.


How to Benchmark Your LinkedIn Competitors

The only honest way to know if your LinkedIn is performing is to compare against accounts in your exact niche and tier — not against the platform average.

With SociaVault, you can pull recent post engagement from any public LinkedIn profile:

import requests

API_KEY = "your_sociavault_api_key"
BASE_URL = "https://api.sociavault.com"

def get_linkedin_engagement(username):
    resp = requests.get(
        f"{BASE_URL}/v1/scrape/linkedin/profile",
        params={"username": username},
        headers={"X-API-Key": API_KEY}
    )
    profile = resp.json()

    posts_resp = requests.get(
        f"{BASE_URL}/v1/scrape/linkedin/posts",
        params={"username": username, "limit": 20},
        headers={"X-API-Key": API_KEY}
    )
    posts = posts_resp.json().get("posts", [])

    total_er = sum(
        (p["reactions"] + p["comments"] + p["reposts"]) / p["impressions"] * 100
        for p in posts if p.get("impressions", 0) > 0
    )
    avg_er = total_er / len(posts) if posts else 0

    return {
        "username": username,
        "followers": profile.get("followers"),
        "avg_engagement_rate": round(avg_er, 2),
        "posts_analyzed": len(posts)
    }

# Benchmark 5 competitors
competitors = ["competitor1", "competitor2", "competitor3"]
for handle in competitors:
    data = get_linkedin_engagement(handle)
    print(f"{data['username']}: {data['avg_engagement_rate']}% ER ({data['followers']:,} followers)")

This gives you real benchmarks from your actual competitive set — not a cross-industry average that tells you nothing.


LinkedIn Engagement Benchmarks: Quick Reference

Use this when evaluating a LinkedIn creator, your own account, or a competitor:

Step 1: Identify their follower/connection tier. Step 2: Look up the median for that tier (table above). Step 3: Check their niche and apply the niche adjustment. Step 4: Compare their recent post ER against the adjusted benchmark.

A marketing manager with 15,000 followers posting sales content averaging 2.8% ER is performing exactly at median (micro tier, sales niche). That's not bad — but it's not differentiated. If they moved to career advice content and invested in carousels, they'd likely double their ER with the same audience.


FAQ

What is a good engagement rate for a company LinkedIn page?

Company pages typically perform lower than personal profiles — the platform algorithm favors person-to-person content. A 1.0–2.0% ER is average for a company page. Above 2.5% is strong. Most company pages see sub-1% ER because they over-index on product announcements and corporate updates.

Does LinkedIn count post views as impressions?

Yes. LinkedIn impressions = the number of times the post entered a feed. It doesn't require a click or interaction. A post visible to someone scrolling past counts as an impression.

Why do some LinkedIn posts from big accounts get low engagement?

Large accounts on LinkedIn often accumulated followers through older growth tactics (mass connection requests, engagement pods, buying followers). When algorithm changes or engagement pod activity drops off, the follower count stays high but genuine engagement stays low.

How often should I post on LinkedIn to maximize engagement?

Our data shows the top 10% of LinkedIn performers post 3–4 times per week. Daily posting tends to dilute engagement per post. The sweet spot is consistency at a sustainable frequency — 3× per week with high-quality content outperforms daily posting of mediocre content.


Related: LinkedIn Engagement Rate: Fastest-Growing Platform 2026 · LinkedIn Scraping Guide · Good Engagement Rate on TikTok

Found this helpful?

Share it with others who might benefit

Ready to Try SociaVault?

Start extracting social media data with our powerful API. No credit card required.