News SEO and Top Stories

News SEO covers two related but distinct Google surfaces: the Top Stories carousel in standard Google Search, and Google News, the standalone news product available as an app and at news.google.com. The two share some signals but have different reach, different eligibility, and different optimisation priorities.

Top Stories vs Google News

Top Stories is a SERP feature in standard Google Search. It appears as a horizontal carousel of news articles for queries where Google determines the user wants fresh, timely information. It shows stories from multiple publishers, typically published within the last 24–72 hours, though breaking news stories can surface within minutes.

Any site can appear in Top Stories. There is no approval process. Eligibility is determined algorithmically based on content quality, freshness, and E-E-A-T signals. Most SEO coverage of news conflates Top Stories with Google News, but for most publishers the Top Stories carousel in standard search is the more relevant surface.

Google News (news.google.com and the Google News app) is a dedicated news aggregator showing a broader, longer-lasting set of news content. Google News has a higher editorial bar and tends to surface established publishers more heavily. Appearing in Google News consistently requires sustained content quality and publisher authority, rather than specific technical signals alone.

Freshness signals

Freshness is the primary driver of Top Stories eligibility. Google evaluates:

Publication date and timestamp. Every article must have a visible, machine-readable publication date. Use both a human-readable date in the page copy and machine-readable timestamps in structured data and the HTTP Last-Modified header. If you update an article materially, update the dateModified value. Do not update timestamps on unchanged content to manufacture freshness: Google identifies this pattern and may suppress the publisher.

URL stability. URLs should not embed a publication date in a format that marks content as old once it ages. A URL like /seo/core-update-march-2026/ is better than /news/2026/03/15/core-update/ for longevity and crawl efficiency.

Recency. For breaking news, publication time relative to competitors matters. Earlier publication earns earlier placement in the carousel for that story.

Authorship and E-E-A-T

Google’s treatment of news content weighs E-E-A-T heavily, particularly for Your Money or Your Life (YMYL) topics.

Bylines. Every article should have a visible author byline. Anonymous content is at a disadvantage across news surfaces.

Author pages. Each byline should link to an author page showing the journalist’s name, bio, credentials, and publication history. A credentialled author covering their domain of expertise signals genuine expertise to Google’s quality systems.

Editorial standards. An About page, a named editorial team, a corrections policy, and contact information all contribute to site-level trustworthiness. Google’s Quality Rater guidelines treat these as markers of a legitimate news operation.

NewsArticle schema

NewsArticle is an extension of the Article schema type that tells Google explicitly that a piece of content is a news article. The key properties:

{
  "@context": "https://schema.org",
  "@type": "NewsArticle",
  "headline": "Your Article Title",
  "datePublished": "2026-05-07T09:00:00+00:00",
  "dateModified": "2026-05-07T09:00:00+00:00",
  "author": {
    "@type": "Person",
    "name": "Author Name",
    "url": "https://example.com/authors/author-name/"
  },
  "image": {
    "@type": "ImageObject",
    "url": "https://example.com/images/article-image.jpg",
    "width": 1200,
    "height": 630
  },
  "publisher": {
    "@type": "Organization",
    "name": "Publication Name",
    "logo": {
      "@type": "ImageObject",
      "url": "https://example.com/logo.jpg"
    }
  }
}

Google lists no required properties for Article markup, but headline should reflect the article’s on-page headline, and datePublished and dateModified must be in ISO 8601 format. The image property is strongly recommended: supplying a high-resolution, relevant image improves eligibility for the image-rich Top Stories treatment.1

News XML sitemap

A news sitemap uses the Google News sitemap extension to help Google discover articles quickly. It should only include articles published in the last 48 hours.2 Unlike a standard sitemap, which can list thousands of URLs, a news sitemap is a real-time feed of fresh content.

<?xml version="1.0" encoding="UTF-8"?>
<urlset xmlns="http://www.sitemaps.org/schemas/sitemap/0.9"
        xmlns:news="http://www.google.com/schemas/sitemap-news/0.9">
  <url>
    <loc>https://example.com/news/article-slug/</loc>
    <news:news>
      <news:publication>
        <news:name>Publication Name</news:name>
        <news:language>en</news:language>
      </news:publication>
      <news:publication_date>2026-05-07T09:00:00+00:00</news:publication_date>
      <news:title>Article Title</news:title>
    </news:news>
  </url>
</urlset>

Submit the news sitemap URL in Google Search Console under Sitemaps. Google’s crawler checks it frequently for recently published content.

Is AMP required for Top Stories?

AMP (Accelerated Mobile Pages) is a stripped-back HTML framework, backed by Google, for building fast-loading mobile pages. For years Google served those pages from its own cache so they loaded near-instantly from the search results, and AMP was a de facto requirement for the Top Stories carousel.

That requirement is gone. Google removed it in 2021, replacing it with Core Web Vitals as the performance benchmark for news results.3 Sites already using AMP can continue to do so, but building or maintaining AMP specifically for Top Stories eligibility is no longer necessary.

As of July 2026, Google has also stopped serving AMP pages from its AMP Cache and AMP viewer. Clicking an AMP result now sends the searcher to the publisher’s own AMP page rather than a Google-hosted cached copy, and Google has removed the AMP viewer, AMP Cache, and signed exchanges from its documentation.4 Publishers still running AMP no longer need to maintain caches or configure signed exchanges. There is no change to how AMP pages rank in Search or Discover.

What suppresses Top Stories visibility?

  • Missing or incorrect publication dates
  • No author bylines, or author pages that are placeholder content
  • Thin articles with no original reporting or analysis
  • Sites without HTTPS
  • Core Web Vitals failures, particularly on mobile
  • Content that violates Google News policies (misinformation, dangerous content, spam)
  • Updating article timestamps without materially updating the content

How do you measure news SEO performance?

Google Search Console offers two relevant views, and they are easy to confuse. The “News” search type in the Performance (Search) report covers the News tab of Google Search. The standalone Google News product (news.google.com and the app) has its own separate “Performance report (Google News)”. Top Stories clicks from standard Search are counted within the “Web” search type rather than in a dedicated Top Stories report.

Frequently asked questions

Do I need to apply to appear in Google News?
For Top Stories in standard Google Search, no application is needed. For the Google News product specifically (news.google.com and the Google News app), Google uses algorithmic selection. There is no separate publisher application process in Google Search Console for most publishers.

Does my site need to be a dedicated news publisher?
No. Any site publishing timely, original content on news-oriented topics can appear in Top Stories. Industry blogs, product update pages, and editorial commentary can all surface if they meet freshness and E-E-A-T signals.

How quickly can a newly published article appear in Top Stories?
For sites Google already crawls frequently, new articles can appear in Top Stories within minutes of publication. A news sitemap helps signal that fresh content is available, reducing discovery latency.

Footnotes

  1. Article (Article, NewsArticle, BlogPosting) structured data — Google Search Central

  2. Create a News sitemap — Google Search Central

  3. More time, tools, and details on the page experience update — Google Search Central

  4. Updating AMP documentation — Google Search Central (Updates)