www.npr.org
Scored by v3 · source-of-truth hashes: score db860d6ac94e · thresholds e94f8b33e500 — verifiable against the canonical scorer.
The 28-day score is the p75 of nightly runs — the stable number to cite. Deterministic metrics (CRR/SSD/TC) show their latest value (they move only when the site changes); timing (TTFUT) and answer-fidelity (AF) are smoothed by 28-day p75 — the same lab-vs-field split Core Web Vitals uses. Synthetic daily measurement, not real-user field data.
An agent is likely to fabricate missing details rather than say “I don’t know”. 0/4 applicable facts come from machine-readable structured data.
Metrics
Token Cost breakdown
Where the page's tokens go (≈38,420 across regions). 100% is non-content — chrome and boilerplate an agent pays for. Add landmark roles (main/nav/header/footer) so agents can skip it.
Final screenshot
Diagnostics
pre-JS raw HTML
Fix: Server-render or statically generate the main content so a non-JS agent still receives it; make client rendering a progressive enhancement, not the source of truth.
agent representation (Chrome/markdown output)
Fix: Trim boilerplate, collapse repeated structures, and drop decorative markup from agent-visible content so an agent spends fewer tokens to read the page.
content vs chrome/boilerplate
Fix: Wrap the real content in <main>/<article>, cut repeated nav/boilerplate, and keep the primary content dense and early in the DOM.
Rendered profile: headless
Metrics
Token Cost breakdown
Where the page's tokens go (≈37,116 across regions). 100% is non-content — chrome and boilerplate an agent pays for. Add landmark roles (main/nav/header/footer) so agents can skip it.
Final screenshot
Diagnostics
pre-JS raw HTML
Fix: Server-render or statically generate the main content so a non-JS agent still receives it; make client rendering a progressive enhancement, not the source of truth.
content vs chrome/boilerplate
Fix: Wrap the real content in <main>/<article>, cut repeated nav/boilerplate, and keep the primary content dense and early in the DOM.
agent representation (Chrome/markdown output)
Fix: Trim boilerplate, collapse repeated structures, and drop decorative markup from agent-visible content so an agent spends fewer tokens to read the page.
Rendered profile: headless
Access & discovery checks — separate from the gated CAV metrics above. Click an issue for business impact, what we measured, and how to fix. · Take the Agent Readiness course →
Agent files & endpoints
Issues (8)
✗ robots.txt allows AI bots high impact Blocks: * (all)
Business impact If robots.txt blocks AI crawlers you are invisible to ChatGPT, Claude and Perplexity — they skip you and recommend a competitor instead.
What we measured We read /robots.txt and test it against 16 AI user-agents (GPTBot, ClaudeBot, PerplexityBot, …) for a Disallow that blocks them.
How to fix Allow major AI bots to public content; restrict only private paths (/admin, /api).
User-agent: GPTBot
Allow: /
Disallow: /admin/
~ No content-blocking cookie wall medium impact Consent platform: onetrust (verify it doesn't block content)
Business impact A consent wall that hides content until a click is invisible to agents — they cannot click 'Accept'.
What we measured We fingerprint OneTrust, Cookiebot, Usercentrics and similar managers and flag content-blocking ones.
How to fix Use an overlay banner that leaves content in the DOM, not a blocking interstitial.
Spec: https://gdpr.eu/cookies/
✗ llms.txt present high impact Absent at /llms.txt and /.well-known/llms.txt
Business impact llms.txt is the robots.txt for AI: it tells agents what your site is, what matters, and where to find it. Without it AI guesses — and guessing means inaccurate recommendations and lost visibility.
What we measured We fetch /llms.txt and /.well-known/llms.txt and validate the spec (H1 title + a one-line blockquote summary). We also note /llms-full.txt (your full content as Markdown).
How to fix Create /llms.txt with a short summary + key pages; optionally /llms-full.txt with full content in Markdown.
# Your Site
> One-line description for AI agents.
## Key pages
- /products — catalog
- /pricing — plans
- /docs — documentationSpec: https://llmstxt.org
✗ Structured data (JSON-LD) medium impact No JSON-LD found
Business impact Schema.org JSON-LD tells agents what a page IS (product, article, business) with typed fields (price, rating, hours). Without it agents extract less reliably.
What we measured We parse <script type=application/ld+json>, validate it, and check for populated @type fields.
How to fix Add JSON-LD: Organization/LocalBusiness on the homepage, Product on product pages, Article on posts.
<script type="application/ld+json">{"@context":"https://schema.org","@type":"Organization","name":"Your Co","url":"https://example.com"}</script>Spec: https://schema.org/
✗ XML sitemap present medium impact No /sitemap.xml
Business impact A sitemap is your table of contents for AI crawlers. Without it agents follow homepage links and miss deep pages (products, docs, pricing) — shrinking what they can recommend.
What we measured We fetch /sitemap.xml (and /sitemap_index.xml), confirm valid XML with <loc> entries, and check <lastmod> freshness.
How to fix Generate an XML sitemap of all public pages with current lastmod dates and reference it in robots.txt.
# robots.txt
Sitemap: https://example.com/sitemap.xml
~ agents.json discovery low impact Absent (emerging standard)
Business impact agents.json describes what your site can DO for agents (services, endpoints, capabilities) — an emerging discovery standard. Early adopters get native agent integration.
What we measured We check /agents.json and /.well-known/agents.json for a valid configuration.
How to fix Publish /agents.json describing your site's capabilities and actions.
~ WebMCP endpoint low impact Absent (emerging standard)
Business impact WebMCP lets agents call actions on your site directly (book, buy, query) instead of scraping the DOM. Early adopters get native AI-agent interoperability.
What we measured We check /.well-known/webmcp and /webmcp.json for a valid actions array.
How to fix Add a WebMCP endpoint exposing your key actions to agents.
Spec: https://webmcp.org
~ API documentation low impact No OpenAPI/Swagger found
Business impact Programmatic agents prefer a typed API. An OpenAPI/Swagger spec lets them integrate without scraping.
What we measured We probe /openapi.json, /swagger.json, /api-docs and /.well-known/openapi.json.
How to fix Publish an OpenAPI spec at a well-known path.
Passed audits (4)
Transport & Trust (SEC 1.0.0)
HTTPS, HSTS, CSP, sniffing, referrer and CORS posture. Diagnostic only — this does not affect the CAV score. A security header does not make a page more legible to an agent, so scoring it would reward a CDN toggle that changes nothing an agent can recover. We measure it and say so.
Per-header findings (6)
| Header | Evidence |
|---|---|
| ✅ HTTPS | served over HTTPS |
| ❌ HSTS | no strict-transport-security header |
| ❌ Content-Security-Policy | no content-security-policy header |
| ✅ X-Content-Type-Options | nosniff |
| ✅ Referrer-Policy | no-referrer-when-downgrade |
| ❌ CORS exposure | access-control-allow-origin: * WITH allow-credentials: true — invalid and unsafe |
How to improve
whole profile
Third-party impact
207 third-party requests · 4685 KiB (49.2% of transfer) · 390 ms main-thread — code an agent must also fetch/run before your content settles. Fewer, lazier third-parties = faster, cheaper agent reads.
| Third-party domain | Reqs | Transfer | Main-thread |
|---|---|---|---|
| brightspotcdn.com | 26 | 910 KiB | — |
| googletagmanager.com | 4 | 604 KiB | — |
| geoedge.be | 5 | 354 KiB | — |
| gstatic.com | 1 | 333 KiB | — |
| doubleclick.net | 8 | 277 KiB | 52 ms |
| cookielaw.org | 26 | 248 KiB | 51 ms |
| stripe.com | 2 | 245 KiB | — |
| jwpcdn.com | 4 | 215 KiB | — |
| pubmatic.com | 11 | 203 KiB | — |
| jwpsrv.com | 3 | 158 KiB | — |
| googleapis.com | 3 | 158 KiB | 42 ms |
| piano.io | 5 | 147 KiB | — |
Wasted JavaScript (by bundle)
Transfer-accurate — each bundle's transfer size × its unused %, ranked by wasted bytes (the biggest code-splitting wins). Unused JS also inflates Token Cost (TC).
| Bundle | Transfer | Unused | Wasted |
|---|---|---|---|
| https://www.gstatic.com/recaptcha/releases/w_Yb7dGGXaKesJ7BMiqFJqBG/recaptcha__en.js 3P | 333 KiB | 67.7% | 225 KiB |
| https://js.stripe.com/v3/ 3P | 245 KiB | 74.6% | 183 KiB |
| https://securepubads.g.doubleclick.net/pagead/managed/js/gpt/m202607300101/pubads_impl.js 3P | 199 KiB | 57.6% | 114 KiB |
| https://imasdk.googleapis.com/js/sdkloader/ima3.js 3P | 155 KiB | 72.4% | 113 KiB |
| https://www.googletagmanager.com/gtm.js?id=GTM-NHZ4W3X>m=4e6852 3P | 148 KiB | 65.5% | 97 KiB |
| https://www.googletagmanager.com/gtag/js?id=G-XK44GJHVBE&cx=c>m=4e6852 3P | 168 KiB | 51.9% | 87 KiB |
| https://ads.pubmatic.com/AdServer/js/pwt/162268/7835/pwt.js 3P | 183 KiB | 46.4% | 85 KiB |
| https://cdn.piano.io/api/tinypass.min.js 3P | 137 KiB | 61% | 83 KiB |
| https://www.googletagmanager.com/gtag/js?id=G-LLLW9F9XPC 3P | 152 KiB | 53.5% | 81 KiB |
| https://www.npr.org/iR-wi8jwVF/2pev/M_3R0f/cLS5zN5h/DGlkTmQpBw/FydHIR/YaOmh4?v=e4bd278e-d802-2d96-bcff-37a28d92b81e | 181 KiB | 36.8% | 67 KiB |
| https://prod-eks-bundles.npr.org/dist/bundles/81.0333e70ebca644b06cf6.chunk.js | 103 KiB | 61.5% | 63 KiB |
| https://prod-eks-bundles.npr.org/dist/bundles/1.4b290c4797456da79d00.chunk.js | 124 KiB | 48.9% | 61 KiB |
| https://ssl.p.jwpcdn.com/player/v/8.20.10/provider.hlsjs.js 3P | 103 KiB | 58.9% | 61 KiB |
| https://prod-eks-bundles.npr.org/dist/bundles/3.c1da04b9877ef88619d2.chunk.js | 83 KiB | 72.8% | 60 KiB |
| https://prod-eks-bundles.npr.org/dist/bundles/4.b833bf216ec23f6ea74d.chunk.js | 94 KiB | 59.4% | 56 KiB |
Network
Heaviest requests (30)
| URL | Type | Status | Transfer |
|---|---|---|---|
| https://media.npr.org/assets/multimedia/2026/postcards-20260112/dh.mp4 | Media | 206 | 2764 KiB |
| https://prod-eks-bundles.npr.org/dist/bundles/fonts-css-959a38144afc8a09dc53.css | Stylesheet | 200 | 342 KiB |
| https://www.gstatic.com/recaptcha/releases/w_Yb7dGGXaKesJ7BMiqFJqBG/recaptcha__en.js | Script | 200 | 333 KiB |
| https://rumcdn.geoedge.be/880a45f2-0015-49d2-b38f-2d26be44ae09/grumi.js | Script | 200 | 324 KiB |
| https://js.stripe.com/v3/ | Script | 200 | 245 KiB |
| https://securepubads.g.doubleclick.net/pagead/managed/js/gpt/m202607300101/pubads_impl.js | Script | 200 | 199 KiB |
| https://media.npr.org/assets/multimedia/2026/postcards-20260112/dh-poster.jpg | Image | 200 | 192 KiB |
| https://s.npr.org/templates/css/fonts/NPRSans.css | Stylesheet | 200 | 185 KiB |
| https://ads.pubmatic.com/AdServer/js/pwt/162268/7835/pwt.js | Script | 200 | 183 KiB |
| https://www.npr.org/iR-wi8jwVF/2pev/M_3R0f/cLS5zN5h/DGlkTmQpBw/FydHIR/YaOmh4?v=e4bd278e-d802-2d96-bcff-37a28d92b81e | Script | 200 | 181 KiB |
| https://www.googletagmanager.com/gtag/js?id=G-XK44GJHVBE&cx=c>m=4e6852 | Script | 200 | 168 KiB |
| https://media.npr.org/chrome/npr-logo-2026-animated.gif | Image | 200 | 158 KiB |
| https://imasdk.googleapis.com/js/sdkloader/ima3.js | Script | 200 | 155 KiB |
| https://www.googletagmanager.com/gtag/js?id=G-LLLW9F9XPC | Script | 200 | 152 KiB |
| https://www.googletagmanager.com/gtm.js?id=GTM-NHZ4W3X>m=4e6852 | Script | 200 | 148 KiB |
| https://e1cef1f0-495f-4973-ba1c-880786e73a66.edge.permutive.app/e1cef1f0-495f-4973-ba1c-880786e73a66-web.js | Script | 200 | 137 KiB |
| https://cdn.piano.io/api/tinypass.min.js | Script | 200 | 137 KiB |
| https://www.googletagmanager.com/gtm.js?id=GTM-MVD397M | Script | 200 | 136 KiB |
| https://cdn.cookielaw.org/scripttemplates/202601.1.0/otBannerSdk.js | Script | 200 | 127 KiB |
| https://prod-eks-bundles.npr.org/dist/bundles/1.4b290c4797456da79d00.chunk.js | Script | 200 | 124 KiB |
| https://npr.brightspotcdn.com/dims3/default/strip/false/crop/5000x2813+0+0/resize/800/quality/85/format/jpeg/?url=http%3A%2F%2Fnpr-brightspot.s3.amazonaws.com%2F47%2F4e%2Fb4dc070f4d9ea7c8f5ca25658a63%2F20260618-puth-bronsonarcuri-3.jpg | Image | 200 | 109 KiB |
| https://ssl.p.jwpcdn.com/player/v/8.20.10/provider.hlsjs.js | Script | 200 | 103 KiB |
| https://prod-eks-bundles.npr.org/dist/bundles/81.0333e70ebca644b06cf6.chunk.js | Script | 200 | 103 KiB |
| https://npr.brightspotcdn.com/dims3/default/strip/false/crop/9504x5344+0+0/resize/800/quality/85/format/jpeg/?url=http%3A%2F%2Fnpr-brightspot.s3.amazonaws.com%2Fca%2F7d%2F1124d2ee4dacaafcf0ca17ac7825%2Ffleming-fleck-credit-egillis-6.jpg | Image | 200 | 98 KiB |
| https://prod-eks-bundles.npr.org/dist/bundles/4.b833bf216ec23f6ea74d.chunk.js | Script | 200 | 94 KiB |
| https://c.amazon-adsystem.com/aax2/apstag.js | Script | 200 | 93 KiB |
| https://videos-cloudfront-usp.jwpsrv.com/6a765c16_f33d7a4ff4acf06d71ffb7466ba28c014f0ffae5/sites/GlQS13rH/media/rtcnSxQL/versions/QsRtV4PP/manifest.ism/manifest-audio_0_JdLTuOeo_GXpbDybM=111999-video_0_JdLTuOeo_PkbM9wms=270815-1.ts | XHR | 200 | 89 KiB |
| https://www.npr.org/ | Document | 200 | 89 KiB |
| https://prod-eks-bundles.npr.org/dist/bundles/3.c1da04b9877ef88619d2.chunk.js | Script | 200 | 83 KiB |
| https://ssl.p.jwpcdn.com/player/v/8.20.10/jwplayer.core.controls.js | Script | 200 | 72 KiB |
Long tasks (>50 ms)
| Start | Duration |
|---|---|
| 814 ms | 134 ms |
| 280 ms | 126 ms |
| 1665 ms | 54 ms |
| 1947 ms | 51 ms |
| 3257 ms | 51 ms |
| 2472 ms | 50 ms |