Top Stories Optimization: The Complete 2026 Guide
Technical guide to optimizing for Google Top Stories in 2026, including eligibility criteria, structured data requirements, freshness signals, and performance factors.
- To appear in Top Stories, a page must meet three baseline requirements.
- The structured data for Top Stories is identical to the standard NewsArticle schema, but Google applies stricter validation.
- Top Stories is fundamentally a real-time feature.
- Core Web Vitals directly impact Top Stories eligibility.
- Verify NewsArticle structured data is present and valid on each article page Confirm images are at least 1200px wide with 16:9 aspect ratio Test...
The Top Stories carousel appears at the top of mobile search results for news-related queries, driving significant click-through volume. Unlike traditional organic results, Top Stories selection depends on a distinct set of eligibility signals including structured data quality, timeliness, and...
Eligibility Criteria
To appear in Top Stories, a page must meet three baseline requirements. First, the page must include valid NewsArticle or Article structured data with a properly formatted datePublished field. Second, the page must pass Core Web Vitals assessment on mobile devices. Third, the page must not be blocked from indexing by robots.txt, noindex tags, or login walls (Google Search Central, "Top Stories Documentation", 2025).
Google also requires that the article covers a topic that is currently breaking or rapidly developing. Older content, even with correct structured data, generally does not qualify unless it has been significantly updated with new information and the dateModified property reflects that update.
Structured Data Requirements
The structured data for Top Stories is identical to the standard NewsArticle schema, but Google applies stricter validation. The headline property should be under 110 characters. The image property must include at least one image that is 1200px wide or larger, with a 16:9 aspect ratio recommended. Google also uses the author and publisher properties to establish credibility signals.
{
"@context": "https://schema.org",
"@type": "NewsArticle",
"headline": "Market Rally Continues as Fed Holds Rates",
"image": [
{
"@type": "ImageObject",
"url": "https://example.com/16x9/photo.jpg",
"width": 1200,
"height": 675
}
],
"datePublished": "2026-06-30T13:00:00Z",
"author": {
"@type": "Organization",
"name": "Example News",
"url": "https://example.com/about"
}
}
Freshness and Recency
Top Stories is fundamentally a real-time feature. Google's crawlers prioritize recently published articles and re-crawl known news sites more frequently. Your news sitemap should update within minutes of publication. A 2025 analysis from Google's search infrastructure team confirmed that articles published within the last 24 hours receive the vast majority of Top Stories impressions (Google Search Central, "Freshness in Search", 2025).
For breaking stories, use the Indexing API to notify Google immediately after publication rather than waiting for the next sitemap refresh cycle. The Indexing API accepts up to 200 URLs per day per site and triggers near-immediate crawling.
Performance Signals
Core Web Vitals directly impact Top Stories eligibility. Google documented in early 2025 that pages in Top Stories must have a Largest Contentful Paint under 2.5 seconds, First Input Delay under 100ms, and Cumulative Layout Shift under 0.1 on mobile. Articles that fail these thresholds may still appear in standard search results but are excluded from the Top Stories carousel.
Audit Checklist
- Verify NewsArticle structured data is present and valid on each article page
- Confirm images are at least 1200px wide with 16:9 aspect ratio
- Test Core Web Vitals on mobile using PageSpeed Insights or Lighthouse
- Set up Indexing API notifications for breaking news
- Submit news sitemap for real-time updates
- Check Search Console for Top Stories performance data in the Search results report
- Review headlines for length (keep under 110 characters)
Citations
- Google Search Central. "Top Stories Documentation." Google Developers, 2025. https://developers.google.com/search/docs/appearance/top-stories
- Google Search Central. "Freshness in Search." Google Search Blog, 2025. https://developers.google.com/search/blog/2025/02/freshness-in-search
- Google Search Central. "Core Web Vitals." Google Developers, 2025. https://developers.google.com/search/docs/appearance/core-web-vitals