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.
The AI Readability Score evaluates your page across four categories, each targeting a different aspect of how AI systems consume content:
Can AI bots actually reach and read your page?
/llms.txt file providing AI-friendly site navigation?Can AI systems parse your content structure?
@type gives LLMs explicit metadata about your content.<article>, <section>, <main> vs div-soup. AI systems use these signals to identify content boundaries.This is the biggest category because it's the hardest to get right.
dateModified in JSON-LD, article:modified_time meta tags, Last-Modified headers.Can AI systems find and contextualize your page?
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.
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.
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": [ ... ]
}
}
curl "https://seoscoreapi.com/demo-ai-readability?url=https://example.com"
/llms.txt — A simple text file describing your site for AI crawlers. Free 4 points.<div> soup with <article>, <section>, <main>. Helps AI systems find the actual content.dateModified — In your JSON-LD or as article:modified_time meta tag. Freshness matters for AI citation.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