Back to Blog
Research

Twitter/X Engagement Dropped 9% in 2026 — What the Data Shows

April 15, 2026
8 min read
S
By SociaVault Team
TwitterXEngagement RateBenchmarksResearchSociaVault Labs

Twitter/X Engagement Dropped 9% in 2026

1.11%. That's the median engagement rate on Twitter/X — the lowest of any major platform in our 2026 benchmarks study.

And it's getting worse. Year-over-year, Twitter/X engagement fell 9.0%, the steepest decline of any platform we tracked. For a platform built on conversation, the numbers paint a bleak picture.

Here's what's happening, what the tier-by-tier data shows, and where pockets of engagement still exist.


Twitter/X Engagement Rate Formula

Twitter/X ER = (Likes + Replies + Retweets + Quote Tweets) / Followers × 100

We count all four engagement signals. Bookmarks are private and not available through most data access methods, so they're excluded. The denominator is followers, consistent with industry standard.


Twitter/X Engagement by Follower Tier

TierFollowersMedian ER25th Pctl75th Pctl
Nano1K–10K2.18%1.32%3.47%
Micro10K–50K1.42%0.87%2.24%
Mid50K–100K0.97%0.58%1.54%
Macro100K–500K0.63%0.37%1.02%
Mega500K+0.35%0.18%0.61%

These numbers are low across the board

Even nano accounts — which top every other platform at 3–8% — only hit 2.18% on Twitter/X. By contrast:

  • TikTok nano: 7.84% (3.6× higher)
  • LinkedIn nano: 5.62% (2.6× higher)
  • YouTube nano: 5.23% (2.4× higher)

The nano-to-mega drop is 6.2× (2.18% → 0.35%). This is the steepest of any platform, beating even LinkedIn's 5.0×. Mega accounts on Twitter/X get essentially zero meaningful per-tweet engagement relative to their audience size.

If you're a brand spending influencer budget on Twitter/X mega accounts, 0.35% engagement means a creator with 1M followers is averaging 3,500 total engagements per tweet. On TikTok, that same follower count yields 18,400. On LinkedIn, 11,200.


Why Engagement Is Declining

1. The timeline is noisy

Twitter/X's algorithmic timeline mixes content from followed accounts, suggested accounts, promoted tweets, and trending content. The signal-to-noise ratio has increased — users scroll past more content without engaging.

2. Verification changed the incentive structure

The shift to paid verification diluted the blue checkmark's meaning. Previously, verified accounts had higher engagement because the checkmark signaled credibility. Now, anyone can buy it, and the engagement boost has largely disappeared.

3. Reply moderation reduced conversation

Tweet authors can restrict who replies (followers only, mentioned only, no one). This reduces the number of potential engagements per tweet. Good for reducing harassment, but mechanically lowers engagement rates.

4. Audience fragmentation

Users who left Twitter/X for alternatives (Threads, Bluesky, Mastodon) were often the most active engagers — power users, journalists, commentators. The remaining audience is less engagement-prone.


What Still Works on Twitter/X

Not everything is declining equally. Some formats resist the trend:

Threads get 2.1× more engagement

Multi-tweet threads consistently outperform single tweets by 2.1× in our dataset. The mechanic is straightforward — threads appear as a single unit in feeds, and each tweet in the thread is a separate engagement opportunity. A 10-tweet thread has 10 chances to get a like or reply.

Quote tweets outperform retweets

Quote tweets (adding commentary before sharing) generate significantly more engagement than plain retweets. They signal original thought and invite agreement/disagreement. If you're measuring content strategy effectiveness, quote tweet count is a stronger signal than retweet count.

Polls still drive engagement

Tweets with polls get 2-3× the engagement of standard text tweets. The barrier to engagement is minimal — tapping a poll option requires less cognitive effort than composing a reply. For brands that need to boost engagement metrics, polls are the most reliable format.

Hot takes early in news cycles

Twitter/X's greatest remaining strength is real-time conversation. Being first to comment on breaking news, industry shifts, or trending topics still drives outsized engagement. The window is narrow (usually < 2 hours), but the upside is significant.


Year-over-Year Trend

YearMedian ERChange
20241.34%
20251.22%-9.0%
20261.11%-9.0%

Two consecutive years of 9% decline. If this trajectory continues, median engagement will drop below 1% by 2027. For context, here's how Twitter/X compares to other platforms' trajectories:

Platform2024 → 2026 Change
LinkedIn+26.7%
Pinterest+19.5%
YouTube+7.7%
TikTok-15.4%
Twitter/X-17.2%

Twitter/X has the worst two-year trend of any platform we track.


Niche Performance on Twitter/X

RankNicheMedian ER
1Political Commentary2.14%
2Tech & Startup1.74%
3Crypto & Web31.62%
4News & Journalism1.48%
5Gaming1.31%
6Sports1.18%
7Entertainment0.94%
8Marketing0.87%
9Fashion & Beauty0.64%
10Food & Lifestyle0.52%

Political commentary leads at 2.14% — which tells you everything about what Twitter/X has become. The platform's highest engagement comes from divisive, opinion-driven content. This is both its strength and the reason brands struggle with brand safety.

Tech and crypto remain strong at 1.74% and 1.62%. Twitter/X is still the de facto real-time discussion platform for tech industry news, product launches, and crypto markets.

Fashion, food, and lifestyle are essentially dead on Twitter/X at under 1%. These niches have migrated to visual-first platforms. If your content is visual, Twitter/X is not the platform.


How to Benchmark a Twitter/X Account

const axios = require('axios');

const API_KEY = process.env.SOCIAVAULT_API_KEY;
const BASE_URL = 'https://api.sociavault.com';

async function checkTwitterEngagement(username) {
  const profile = await axios.get(`${BASE_URL}/v1/scrape/twitter/profile`, {
    params: { username },
    headers: { 'X-API-Key': API_KEY },
  });

  const data = profile.data.data || profile.data;
  const followers = data.followerCount || data.followers || 0;

  const tweets = await axios.get(`${BASE_URL}/v1/scrape/twitter/profile/tweets`, {
    params: { username },
    headers: { 'X-API-Key': API_KEY },
  });

  const postList = tweets.data.data || [];

  let totalER = 0, count = 0;

  postList.slice(0, 20).forEach(tweet => {
    const likes = tweet.likeCount || tweet.likes || 0;
    const replies = tweet.replyCount || tweet.replies || 0;
    const retweets = tweet.retweetCount || tweet.retweets || 0;
    const quotes = tweet.quoteCount || tweet.quotes || 0;

    if (followers > 0) {
      const er = ((likes + replies + retweets + quotes) / followers) * 100;
      totalER += er;
      count++;
    }
  });

  const avgER = count > 0 ? (totalER / count).toFixed(2) : '0';

  let tier, benchmark;
  if (followers < 10000) { tier = 'Nano'; benchmark = 2.18; }
  else if (followers < 50000) { tier = 'Micro'; benchmark = 1.42; }
  else if (followers < 100000) { tier = 'Mid'; benchmark = 0.97; }
  else if (followers < 500000) { tier = 'Macro'; benchmark = 0.63; }
  else { tier = 'Mega'; benchmark = 0.35; }

  console.log(`@${username}: ${avgER}% ER (${followers.toLocaleString()} followers)`);
  console.log(`Tier: ${tier} (benchmark: ${benchmark}%)`);
  console.log(parseFloat(avgER) > benchmark ? '✅ Above average' : '⚠️ Below average');
}

checkTwitterEngagement('username');

Cost: 2 credits


Quick Reference Card

Your TierBelow AvgAverageGoodExcellent
Nano (1K–10K)< 1.3%1.3–2.2%2.2–3.5%> 3.5%
Micro (10K–50K)< 0.9%0.9–1.4%1.4–2.2%> 2.2%
Mid (50K–100K)< 0.6%0.6–1.0%1.0–1.5%> 1.5%
Macro (100K–500K)< 0.4%0.4–0.6%0.6–1.0%> 1.0%
Mega (500K+)< 0.2%0.2–0.4%0.4–0.6%> 0.6%

Note: "Good" on Twitter/X would be "below average" on most other platforms.


Should You Still Invest in Twitter/X?

The data says: it depends on your niche.

If you're in tech, crypto, news, or political commentary — Twitter/X still offers real-time engagement that no other platform matches. The absolute numbers are low, but the audience quality for these niches is high. A reply from a tech executive is worth more than 100 TikTok likes.

If you're in fashion, food, lifestyle, or any visual niche — the data is clear. Move your effort elsewhere. A 0.52% engagement rate means your content is functionally invisible.

For brands running cross-platform campaigns, Twitter/X should be your lowest-budget allocation unless you're specifically targeting the tech/news/crypto audience.


Read the Full Report

Social Media Engagement Rate Benchmarks 2026 — Full Report →


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.