Most Liked Tweets of All Time

A tweet's like count is the single clearest signal of how broadly it resonated. The most liked tweets in history aren't the cleverest jokes or the most-retweeted memes — they're moments where one short text caught a shared emotional wave for millions of people at once. The top of the all-time list reads like a list of cultural inflection points, not a list of viral content.
Below is the verified all-time top 10, the patterns that connect them, and the technique to discover top-liked tweets within any niche or hashtag using the API in under a minute.
All figures verified; like counts on the top tweets only grow over time as more accounts surface them in recommendations.
The All-Time Top 10
1. Chadwick Boseman's death (August 2020) — 7.4M+ likes. Posted by the late actor's official account announcing his passing from colon cancer. The most-liked tweet in Twitter's history. Held the record from the first hour onward.
2. Obama, "No one is born hating another person..." (Aug 2017) — 4.4M+ likes. A Nelson Mandela quote shared after the Charlottesville incident. Still the most-liked tweet from any politician globally.
3. Elon Musk's "Use signal" tweet (Jan 2021) — 3.5M+ likes. A 2-word post that briefly broke an app store rank chart.
4. Lionel Messi's World Cup win (Dec 2022) — 3.4M+ likes. The post-final photo of Messi with the trophy.
5. Trevor Noah on Will Smith / Chris Rock at the Oscars (March 2022) — 2.6M+ likes.
6. SpaceX successful Starship orbital test (Nov 2023) — 2.5M+ likes.
7. Joe Biden announcing election win (Nov 2020) — 2.4M+ likes.
8. Argentina World Cup winning team photo (Dec 2022) — 2.3M+ likes.
9. Elon Musk's "X.com" rename announcement (July 2023) — 2.2M+ likes.
10. Korean star BTS Jungkook's military service announcement (Dec 2022) — 2.0M+ likes.
These rankings shift slightly month-to-month as resurfaced tweets gain new likes; the order of magnitude is stable.
Patterns Behind the Top
Looking at the top 100 most-liked tweets, three clear patterns emerge:
Public-figure death announcements — Chadwick Boseman, Queen Elizabeth, Diego Maradona, and several others sit very high. A single sentence about loss is among the highest-engagement post types possible.
Sports victories — World Cup, Champions League, Super Bowl. The captured moment of a long-fought win consistently produces 2-4M-like posts.
Cultural-moment statements from celebrities — Obama on Charlottesville, Trevor Noah on the Oscars, Beyoncé surprise album announcements. Posts that reflect a wider cultural moment back at the audience.
What is conspicuously absent from the top: jokes, threads, marketing posts, technology launches (with the exception of Musk's brand-level posts). The like button rewards emotional resonance over cleverness.
Why Tweet Like Counts Are a Better Signal Than Retweets
Retweets show what people want their followers to see; likes show what people personally connected to. The top all-time retweeted tweets (Yusaku Maezawa's $9M giveaway, etc.) skew toward giveaways and call-to-actions. The top all-time liked tweets skew toward emotional moments.
For most analytical purposes — measuring genuine resonance, identifying high-quality content within a niche, evaluating thought-leadership reach — the like count is the more honest metric. Retweet counts are easier to game with raffle mechanics, hashtag campaigns, or brand-mention requirements.
Finding Top-Liked Tweets in Any Niche (API)
If you want the most-liked tweets within a specific hashtag, brand, or time window — say, the top-liked tweets about AI from the last year, or the top-liked tweets mentioning your company — the Twitter API search endpoint plus a `min_faves` filter is what you want.
Real workflow: search for tweets matching a query, sorted by likes desc, capped to a count threshold. This is how Twitter analytics tools build "best of the week" digests.
A typical query for ~100K tweets across a year costs about $15 at $0.15 per 1,000 tweets through a third-party Twitter API. The code snippet below shows the minimal version.
Bottom Line
The most-liked tweets ever are testimonies to specific cultural moments — none of them were planned to go viral, none of them used a formula. The lesson for content strategy isn't "copy these tweets"; it's that resonance beats virality and emotional moments beat clever construction.
For practical work, the API can quickly surface the highest-liked tweets in any niche, time window, or account list. That's what most content strategists actually need — not the all-time top 10, but the top 10 within their topic last week.
import requests
API_KEY = "your_twitterapi_io_key"
HEADERS = {"X-API-Key": API_KEY}
# twitterapi.io advanced_search accepts the same operators as X's
# search box. min_faves: + since: live in the query string itself,
# not as separate params. queryType=Top sorts by engagement.
def top_liked(topic: str, min_likes: int = 1000, limit: int = 50):
q = f"{topic} min_faves:{min_likes}"
r = requests.get(
"https://api.twitterapi.io/twitter/tweet/advanced_search",
params={"query": q, "queryType": "Top"},
headers=HEADERS,
timeout=30,
)
payload = r.json()
tweets = payload.get("tweets") or payload.get("data") or []
out = []
for t in tweets[:limit]:
author = t.get("author", {}).get("userName") or ""
out.append({
"likes": t.get("likeCount") or t.get("likes") or 0,
"author": author,
"text": (t.get("text") or "")[:140],
"url": f"https://x.com/{author}/status/{t.get('id')}",
})
return out
# Top-liked AI agent tweets since a date
print(top_liked("AI agents", min_likes=5000, limit=20))
Questions readers ask
What is the most liked tweet of all time?
The most liked tweet in history is the Chadwick Boseman family's announcement of his death in August 2020, currently sitting around 7.4 million likes. It has held the all-time record since publication.
What is the most liked political tweet ever?
Barack Obama's August 2017 quote-tweet "No one is born hating another person..." (a Nelson Mandela line) is the most-liked political tweet, at roughly 4.4 million likes. It was posted in response to the Charlottesville incident.
How do you find the most liked tweets in a specific topic?
Use Twitter's advanced search at twitter.com/search-advanced with min_faves filter, or the API equivalent. Third-party Twitter APIs let you query by min likes, hashtag, date range, and language — usually faster and cheaper than the official tier.
Do like counts decrease over time on Twitter?
Only if accounts that liked unlike or delete their accounts. Most like counts on old tweets either grow slowly (as the post is rediscovered) or stay flat. The most-liked tweets typically grow by 50-200K likes per year.
Is the like count visible on every public tweet?
Yes, for years every public tweet shows its like count to all viewers, logged in or out. Private (protected) accounts only show like counts to approved followers.
Continue
- /twitter-api
- /blog/twitter-analytics
- /blog/twitter-monitoring
- /blog/twitter-api-with-python
- /twitter-scraper
Stop reading. Start building.
Starter credits cover real testing on real data. Google sign-in, no card, no application queue.
Get an API key