← Blog

Introducing the AI Readability Score: Is Your Site Ready for LLMs?

We just launched a new scoring system that measures how well AI systems like GPTBot, ClaudeBot, and RAG pipelines can read and cite your content. Here's how it works.

Search is changing. Google is still important, but an increasing share of traffic now comes from AI systems — ChatGPT, Claude, Perplexity, and countless RAG pipelines pulling content from the web.

The question isn't just "can Google find me?" anymore. It's: can an LLM actually understand and cite my page?

Today we're launching the AI Readability Score — a new 0-100 metric that answers exactly that. It's available as a standalone API endpoint and included automatically in every SEO audit.

What It Measures

The AI Readability Score evaluates your page across four categories, each targeting a different aspect of how AI systems consume content:

Crawl Accessibility (25 points)

Can AI bots actually reach and read your page?

Structural Markup (25 points)

Can AI systems parse your content structure?

Content Extractability (30 points)

This is the biggest category because it's the hardest to get right.

AI Discoverability (20 points)

Can AI systems find and contextualize your page?

Real Example: aiopscrew.com

We ran the AI Readability Score against aiopscrew.com to see how a well-optimized technical site performs:

Category Score
Crawl Accessibility 25/25
Structural Markup 22/25
Content Extractability 17/30
AI Discoverability 14/20
Total 78/100 (B)

The SEO score is an excellent 95/100 (A+), but the AI Readability score tells a different story. Crawl accessibility is perfect — the site has an llms.txt file, allows all AI bots, uses HTTPS, and has server-rendered content with fast response times.

Where it loses points is content extractability. The Flesch Reading Ease score is 23 (quite technical), zero sections hit the ideal 50-200 word range for RAG chunking, and there are no outbound citation links. These are things that don't hurt traditional SEO but matter for AI consumption.

How to Use It

Standalone endpoint

curl "https://seoscoreapi.com/ai-readability?url=https://example.com" \
  -H "X-API-Key: YOUR_KEY"

Returns the full breakdown — score, grade, four categories with individual checks, and prioritized recommendations.

Included in audits

Every /audit and /demo-audit response now includes an ai_readability field alongside the existing SEO data:

{
  "score": 95.006,
  "grade": "A+",
  "audit": { ... },
  "ai_readability": {
    "ai_readability_score": 78,
    "ai_readability_grade": "B",
    "categories": { ... },
    "recommendations": [ ... ]
  }
}

Demo (no API key needed)

curl "https://seoscoreapi.com/demo-ai-readability?url=https://example.com"

Quick Wins to Improve Your Score

  1. Add /llms.txt — A simple text file describing your site for AI crawlers. Free 4 points.
  2. Don't block AI bots — Check your robots.txt for GPTBot, ClaudeBot, and CCBot disallow rules.
  3. Add JSON-LD structured data — Article, WebPage, FAQPage schemas give LLMs explicit content metadata. Worth 8 points.
  4. Use semantic HTML — Replace <div> soup with <article>, <section>, <main>. Helps AI systems find the actual content.
  5. Lead with facts — Put the key takeaway in the first sentence of each section. This is what RAG systems extract.
  6. Break content into 50-200 word sections — Use headings to create natural chunk boundaries for retrieval systems.
  7. Add dateModified — In your JSON-LD or as article:modified_time meta tag. Freshness matters for AI citation.

SEO Score vs AI Readability Score

These are intentionally separate metrics. A page can score A+ on SEO and C on AI Readability (or vice versa). Traditional SEO optimizes for search engine ranking factors. AI Readability optimizes for content extraction and citation by LLM systems.

Both matter. We report both. Your existing SEO scores and weights are completely unchanged — AI Readability is additive, not a replacement.

Try it on your site and see where you stand.

Try SEO Score API free

Get Free API Key