scalpel@labs: ~/glossary/word-count-seo.mdx5 sections

Word Count in SEO

Word count is the word tally of a page's visible body text, excluding navigation and boilerplate. Auditing tools use it to flag pages worth investigating, not as a target number.

extension: Scalpel SEOupdated: 2026-08-14read_time: 1 min
less word-count-seo.mdx

Why it matters

Google has never set a minimum word count for ranking. A 300-word page ranks fine if it answers the query. So does a 3,000-word page. Low word count matters in audits only because it often signals thin, templated, or half-answered content. That is a real ranking problem, but not because of length. The word count flags pages to check, not a number to chase.

How it works

Word count tallies visible text tokens after stripping navigation, boilerplate, and hidden elements. Different tools define "visible" differently, which is why auditing tools report different counts for the same page. Scalpel counts the words Google's render pipeline sees: main content text, template noise stripped.

What does not matter

Word count itself is not a ranking signal. Chasing a minimum (1,000, 2,000 words) is wasted effort. Search engines judge whether a page answers the query. Short pages beat long ones on transactional queries, featured snippets, and high-intent searches where precision matters more than depth.

Code example

Thin content is usually an audit finding, not a code bug. Compare a sparse product page with one that adds real detail:

<!-- Thin: minimal product copy -->
<h1>Widget Pro</h1>
<p>Our best widget.</p>
<p>$49.99</p>

<!-- Better: detailed with genuine information -->
<h1>Widget Pro: Heavy-Duty Industrial Widget</h1>
<p>The Widget Pro is engineered for high-volume manufacturing environments. It handles 500+ cycles per hour, includes a 5-year warranty, and integrates with standard DIN rail systems.</p>
<h2>Specifications</h2>
<ul>
  <li>Rated for 0-50C ambient temperature</li>
  <li>Aluminum body, stainless fasteners</li>
  <li>Shock rating: 10G per MIL-STD-810H</li>
</ul>
<p>Installation takes 15 minutes. No additional tools required.</p>

The second answers the questions a buyer actually has: durability, conditions, setup. Not because length matters, but because the content is more thorough.

How Scalpel shows it

The Content tab shows word count as a raw number, with other on-page metrics. If the count is low for the topic, it appears in the audit summary as something to check. Scalpel doesn't penalise short pages; it surfaces the count so you can judge whether the content actually answers the query.

Sources