www.apnews.com

Report from 8/10/2026, 11:03:40 AM https://www.apnews.com
Latest run · lab, cold cache
63
8/10/2026
28-day score · p75 · the standard
64
20 runs
CRR90%latest
SSD69%latest
TC3678 toklatest
TTFUT60 ms28-day p75

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.

Core Agent Vitals badge  Embed this badge

Show your agent-readiness score anywhere — it links back to this report.

[![Core Agent Vitals](https://agentvitals.dev/badge/apnews.com.svg)](https://agentvitals.dev/results?url=https%3A%2F%2Fwww.apnews.com)
<a href="https://agentvitals.dev/results?url=https%3A%2F%2Fwww.apnews.com"><img src="https://agentvitals.dev/badge/apnews.com.svg" alt="Core Agent Vitals" height="20"></a>
What AI tells your customers about youAgent confidence: LOW
Business nameAssociated Press News
CategoryNewsMediaOrganization
🟡Price$46 · guessed from page text (no structured data)
Locationnot found
Hoursnot found
Productsnot found
🟡DescriptionRead the latest headlines, breaking news, and videos at APNews.com, the definitive source for independent journalism from every corner of the globe. · guessed from page text (no structured data)

An agent is likely to fabricate missing details rather than say “I don’t know”. 2/7 applicable facts come from machine-readable structured data.

63
Overall score
weighted CAV (0–100)
WARN
0–4950–8990–100

Metrics

90%
CRR Content Recovery Needs work
0.69
SSD Semantic Signal Density Good
3,678 tok
TC Token Cost Good
62 ms
TTFUT Time to First Useful Token N/A

Token Cost breakdown

Where the page's tokens go (≈71,400 across regions). 48% is non-content — chrome and boilerplate an agent pays for. Add landmark roles (main/nav/header/footer) so agents can skip it.

Content
51.9% · 37,041
Chrome (nav / header / footer)
22.8% · 16,306
Boilerplate (cookie / ad)
1.2% · 857
Other
24.1% · 17,196

Final screenshot

Final screenshot of https://www.apnews.com

Diagnostics

medium CRR Content is hidden behind JavaScript

pre-JS raw HTML

Evidence10% of content requires JS · 90% of rendered content recovered (rest is placeholder/wrong)
ImpactA non-rendering agent never sees the JS-injected content.
Effort1–4 h

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.

medium TC 48.1% of tokens are non-content (boilerplate/chrome)

agent representation — token decomposition

EvidenceToken decomposition: content 51.9%, chrome 22.8%, boilerplate 1.2%, other 24.1%. Only 51.9% of the agent's tokens are real content.
ImpactAn agent pays for boilerplate on every request and has less context left for the real content.
Effort30–90 min

Fix: Strip repeated nav/header/footer/cookie chrome from the agent-visible output; wrap content in <main>/<article> so the extractor keeps signal and drops boilerplate.

Rendered profile: headless

Agent Discoverability 71/100 · Needs Work

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

llms.txt Absent at /llms.txt and /.well-known/llms.txt Learn →
robots.txt (AI bots) Blocks: * (all) Learn →
sitemap.xml Found at /sitemap.xml Learn →
JSON-LD structured data Types: WebSite, NewsMediaOrganization Learn →
~ agents.json Absent (emerging standard) Learn →
~ WebMCP endpoint Absent (emerging standard) Learn →
~ OpenAPI / API docs No OpenAPI/Swagger found Learn →

Issues (6)

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).

Learn how to implement →

User-agent: GPTBot
Allow: /
Disallow: /admin/

Spec: https://platform.openai.com/docs/gptbot

~ 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.

Learn how to implement →

# Your Site
> One-line description for AI agents.

## Key pages
- /products — catalog
- /pricing — plans
- /docs — documentation

Spec: https://llmstxt.org

~ 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.

Learn how to implement →

Spec: https://github.com/wild-card-ai/agents-json

~ 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.

Learn how to implement →

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.

Learn how to implement →

Spec: https://www.openapis.org/

Passed audits (6)

✓ No CAPTCHA wall✓ Machine-readable prices✓ No login wall on public content✓ Structured data (JSON-LD)✓ XML sitemap present + fresh✓ Server response (TTFB)

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.

81Transport posture (0–100, unscored)
3pass
1warn
1fail
Per-header findings (6)
HeaderEvidence
✅ HTTPSserved over HTTPS
✅ HSTSmax-age=31536000; includeSubDomains
✅ Content-Security-Policypolicy present, script-src does not allow inline
❌ X-Content-Type-Optionsmissing nosniff
⚠️ Referrer-Policyno referrer-policy header (browser default applies)
➖ CORS exposureno CORS headers on the document (normal for an HTML page)
Full profile — how to improve · unused JS · network · timing

How to improve

highProfile reflects a block/challenge page — not your contenthighest leverage

whole profile

EvidenceMeasured against a block/challenge page (a bot-wall/CAPTCHA was served (www.gstatic.com)); every number here describes the wall, not your site.
ImpactAn AI agent hits the same wall and recovers none of your content — fix the block before optimizing anything else.
FixAllowlist legitimate agent user-agents / IP ranges in your WAF or bot-management and serve real content (not a challenge), then re-run.

Third-party impact

606 third-party requests · 9403 KiB (75.3% of transfer) · 6139 ms main-thread — code an agent must also fetch/run before your content settles. Fewer, lazier third-parties = faster, cheaper agent reads.

Third-party domainReqsTransferMain-thread
primis.tech451964 KiB1169 ms
jwpsrv.com91949 KiB
pub.network21445 KiB655 ms
gstatic.com6420 KiB82 ms
jwpcdn.com9408 KiB221 ms
googletagmanager.com2338 KiB161 ms
doubleclick.net19319 KiB355 ms
viafoura.net18312 KiB549 ms
bounceexchange.com13293 KiB109 ms
ntv.io4280 KiB177 ms
cookielaw.org12266 KiB254 ms
confiant-integrations.net2236 KiB65 ms

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).

BundleTransferUnusedWasted
https://live.primis.tech/live/liveVideo.php?vpaidManager=sekindo&s=58057&ri=6C69766553746174737C736B317B54307D7B64323032362D30382D30375F31337D7B7331373237323837387D7B4333317D7B53595842755A58647A4C6D4E7662513D3D7D7B626368726F6D657D7B716465736B746F707D7B583634307D7B593434307D7B66317D7B4C32313735387DFEFE&cudi=pip-MTplLwIkOC4mOC4kODY%3D&userUA=Mozilla%2F5.0+%28X11%3B+Linux+x86_64%29+AppleWebKit%2F537.36+%28KHTML%2C+like+Gecko%29+Chrome%2F126.0.0.0+Safari%2F537.36&debugInformation=&isWePassGdpr=1&gppConsent=&gppSid=&noViewableMidrollPolicy=off&isDoublePreroll=0&autoSkipVideoSec=0&c2pWaitTime=4&sdkv=&isSinglePageFloatSupport=0&availCampaigns=&isAmpIframe=0&tagKeywords=&cbuster=1786097805&csuuid=6a75b08dc90cf&debugInfo=17272878_&debugPlayerSession=&pubUrlDEMO=&isAsyncDEMO=0&customPlaylistIdDEMO=&sta=17272878&showLogo=0&clkUrl=&plMult=-1&schedule=eyJwcmVfcm9sbCI6MSwiZ2FwIjoiYXV0byJ9&content=plembed4736wyuinpkv&secondaryContent=&x=640&y=440&pubUrl=https%3A%2F%2Fapnews.com%2F&contentNum=1&flow_closeBtn=0&flowCloseTimeout=0&flow_closeButtonPosition=right&isCustomSizeSlider=0&flow_direction=bl&flow_horizontalOffset=10&flow_bottomOffset=100&impGap=1&flow_width=310&flow_height=260&videoType=normal&isOriginImg=0&gdpr=0&gdprConsent=&contentFeedId=&geoLati=49.282&geoLong=-123.1103&vpTemplate=21758&flowMode=below&isRealPreroll=0&playerApiId=&isApp=0&ccpa=0&ccpaConsent=&subId=&appName=&appBundleId=https%3A%2F%2Fapnews.com%2F&appStoreUrl=&diaid=&appPrivacyPolicy=&appIsPaid=&appDeveloper=&appId=&appVersion=&sdkv=&enableResizeObserverInapp=0&isAppJs=0 3P563 KiB57.1%322 KiB
https://www.gstatic.com/recaptcha/releases/XOqlk8PL_yVx6IdpLbpXdiLy/recaptcha__en.js 3P336 KiB78.1%263 KiB
https://live.primis.tech/content/prebid/prebidVid.10.23.23.min.js 3P351 KiB69.4%244 KiB
https://securepubads.g.doubleclick.net/pagead/managed/js/gpt/m202607300101/pubads_impl.js?cb=122880111 3P199 KiB58.6%117 KiB
https://a.pub.network/apnews-com/pubfig.engine.js 3P200 KiB58.1%116 KiB
https://imasdk.googleapis.com/js/sdkloader/ima3.js 3P155 KiB72.4%113 KiB
https://html-load.cc/script/YXBuZXdzLmNvbQ.js 3P148 KiB72.1%107 KiB
https://cdn.viafoura.net/vf-v2.js 3P188 KiB55.7%105 KiB
https://cdn.confiant-integrations.net/gptprebidnativevideo/202607281755/wrap.js 3P169 KiB61.1%103 KiB
https://assets.apnews.com/resource/00000188-2a81-d28a-a1fd-7bfb6ccb0000/styles/default/All.min.ebf1c29b90335b2992e30e33c5fe91d0.gz.js122 KiB84.6%103 KiB
https://a.pub.network/apnews-com/prebid.js 3P195 KiB52.1%102 KiB
https://ssl.p.jwpcdn.com/player/v/8.49.9/provider.hlsjs.js 3P141 KiB70.8%100 KiB
https://cdn.cookielaw.org/scripttemplates/202604.2.0/otBannerSdk.js 3P136 KiB63.4%86 KiB
https://www.googletagmanager.com/gtm.js?id=GTM-KT7RHVG 3P183 KiB45.5%83 KiB
https://www.googletagmanager.com/gtag/js?id=G-CW1LS0SXPK&cx=c&gtm=4e6852 3P156 KiB50.2%78 KiB

Network

679Requests
12494 KiBTransferred
149Scripts
75.3%3rd-party
10Long tasks
Script (149)
6332 KiB
Image (147)
2445 KiB
XHR (71)
1182 KiB
Media (3)
1106 KiB
Font (14)
718 KiB
Fetch (177)
331 KiB
Document (76)
178 KiB
Stylesheet (14)
155 KiB
Other (21)
46 KiB
Manifest (1)
1 KiB
Ping (6)
1 KiB
Heaviest requests (30)
URLTypeStatusTransfer
https://videos-cloudfront.jwpsrv.com/6a765b14_2657a836076397415700eeb2369bd440da4e7e9f/content/conversions/vJHGNSbp/videos/1fzYd5Vf-34388479.mp4Media2061106 KiB
https://live.primis.tech/live/liveVideo.php?vpaidManager=sekindo&s=58057&ri=6C69766553746174737C736B317B54307D7B64323032362D30382D30375F31337D7B7331373237323837387D7B4333317D7B53595842755A58647A4C6D4E7662513D3D7D7B626368726F6D657D7B716465736B746F707D7B583634307D7B593434307D7B66317D7B4C32313735387DFEFE&cudi=pip-MTplLwIkOC4mOC4kODY%3D&userUA=Mozilla%2F5.0+%28X11%3B+Linux+x86_64%29+AppleWebKit%2F537.36+%28KHTML%2C+like+Gecko%29+Chrome%2F126.0.0.0+Safari%2F537.36&debugInformation=&isWePassGdpr=1&gppConsent=&gppSid=&noViewableMidrollPolicy=off&isDoublePreroll=0&autoSkipVideoSec=0&c2pWaitTime=4&sdkv=&isSinglePageFloatSupport=0&availCampaigns=&isAmpIframe=0&tagKeywords=&cbuster=1786097805&csuuid=6a75b08dc90cf&debugInfo=17272878_&debugPlayerSession=&pubUrlDEMO=&isAsyncDEMO=0&customPlaylistIdDEMO=&sta=17272878&showLogo=0&clkUrl=&plMult=-1&schedule=eyJwcmVfcm9sbCI6MSwiZ2FwIjoiYXV0byJ9&content=plembed4736wyuinpkv&secondaryContent=&x=640&y=440&pubUrl=https%3A%2F%2Fapnews.com%2F&contentNum=1&flow_closeBtn=0&flowCloseTimeout=0&flow_closeButtonPosition=right&isCustomSizeSlider=0&flow_direction=bl&flow_horizontalOffset=10&flow_bottomOffset=100&impGap=1&flow_width=310&flow_height=260&videoType=normal&isOriginImg=0&gdpr=0&gdprConsent=&contentFeedId=&geoLati=49.282&geoLong=-123.1103&vpTemplate=21758&flowMode=below&isRealPreroll=0&playerApiId=&isApp=0&ccpa=0&ccpaConsent=&subId=&appName=&appBundleId=https%3A%2F%2Fapnews.com%2F&appStoreUrl=&diaid=&appPrivacyPolicy=&appIsPaid=&appDeveloper=&appId=&appVersion=&sdkv=&enableResizeObserverInapp=0&isAppJs=0Script200563 KiB
https://videos-cloudfront-usp.jwpsrv.com/6a765aea_ca4795b52573903d0964ad212304d840d5588f09/sites/vJHGNSbp/media/9mC9x0Du/versions/q4O8fFte/manifest.ism/manifest-audio_0_HlLtgNoh_pNJ66Pkl=112022-video_0_HlLtgNoh_6GCoayjK=336074-1.tsXHR200374 KiB
https://live.primis.tech/content/prebid/prebidVid.10.23.23.min.jsScript200351 KiB
https://www.gstatic.com/recaptcha/releases/XOqlk8PL_yVx6IdpLbpXdiLy/recaptcha__en.jsScript200336 KiB
https://video.primis.tech/uploads/cn1/video/users/hls/31784/video_6a67907ab85f2127399280/vid6a757994419f2211393302.mp4/w_1280_00000.tsXHR200317 KiB
https://dims.apnews.com/dims4/default/404f4c9/2147483647/strip/true/crop/4948x3299+0+0/resize/1440x960!/format/webp/quality/90/?url=https%3A%2F%2Fassets.apnews.com%2F9f%2F2b%2F7bc395c77cda887ac903c222152e%2F3ea3072dd24541d8915d4633112ad291Image200283 KiB
https://video.primis.tech/uploads/cn1/video/users/hls/31784/video_6a67907ab85f2127399280/vid6a757994419f2211393302.mp4/w_1280_00001.tsXHR200273 KiB
https://s.ntv.io/serve/load.jsScript200260 KiB
https://dims.apnews.com/dims4/default/feaeaa4/2147483647/strip/false/crop/4977x3318+0+0/resize/1360x907!/quality/90/?url=https%3A%2F%2Fassets.apnews.com%2F1c%2Ff9%2Fb5a5e94d2f336afb65479aa644fa%2Fd21fec24ab344cd8bcd0613c3c641b77Image200200 KiB
https://a.pub.network/apnews-com/pubfig.engine.jsScript200200 KiB
https://securepubads.g.doubleclick.net/pagead/managed/js/gpt/m202607300101/pubads_impl.js?cb=122880111Script200199 KiB
https://a.pub.network/apnews-com/prebid.jsScript200195 KiB
https://dims.apnews.com/dims4/default/a5ee68b/2147483647/strip/true/crop/3333x2222+0+0/resize/1440x960!/format/webp/quality/90/?url=https%3A%2F%2Fassets.apnews.com%2Fb7%2Fe6%2F93e01405daf6a957a3063c7fb347%2F24192705779945ac8649e64396b08bd5Image200191 KiB
https://cdn.viafoura.net/vf-v2.jsScript200188 KiB
https://www.googletagmanager.com/gtm.js?id=GTM-KT7RHVGScript200183 KiB
https://apnews.com/Document200178 KiB
https://assets-jpcust.jwpsrv.com/thumbnails/bs3xtuje-1920.jpgImage200178 KiB
https://assets-jpcust.jwpsrv.com/strips/9mC9x0Du-120.jpgImage200172 KiB
https://cdn.confiant-integrations.net/gptprebidnativevideo/202607281755/wrap.jsScript200169 KiB
https://www.googletagmanager.com/gtag/js?id=G-CW1LS0SXPK&cx=c&gtm=4e6852Script200156 KiB
https://imasdk.googleapis.com/js/sdkloader/ima3.jsScript200155 KiB
https://dims.apnews.com/dims4/default/74f79b2/2147483647/strip/true/crop/3304x2203+0+0/resize/1440x960!/format/webp/quality/90/?url=https%3A%2F%2Fassets.apnews.com%2F18%2Fc5%2F80894985ce0da8ae0d26c8401ff3%2F5acb2594bb394fdd921e5fcd43e6785cImage200154 KiB
https://html-load.cc/script/YXBuZXdzLmNvbQ.jsScript200148 KiB
https://507b28fb-2ef1-4c34-8bda-ba32030bb199.edge.permutive.app/507b28fb-2ef1-4c34-8bda-ba32030bb199-web.jsScript200145 KiB
https://ssl.p.jwpcdn.com/player/v/8.49.9/provider.hlsjs.jsScript200141 KiB
https://assets.apnews.com/resource/00000188-2a81-d28a-a1fd-7bfb6ccb0000/assets/fonts/APCustomFont/APVarW05-Regular.3c0c9d016bf55b85d0800dd405b807e3.woff2Font200139 KiB
https://assets.apnews.com/resource/00000188-2a81-d28a-a1fd-7bfb6ccb0000/4c8008fe47695f4a98df.3c0c9d016bf55b85d0800dd405b807e3.woff2Font200139 KiB
https://cdn.cookielaw.org/scripttemplates/202604.2.0/otBannerSdk.jsScript200136 KiB
https://dims.apnews.com/dims4/default/2a9c424/2147483647/strip/true/crop/2819x1878+0+1/resize/980x653!/quality/90/?url=https%3A%2F%2Fassets.apnews.com%2Fcd%2F19%2F69a3cfe939b1361d740803de41b9%2F717c391ee6ce4398aee857f6ea2214a7Image200133 KiB

Long tasks (>50 ms)

StartDuration
8445 ms305 ms
5697 ms276 ms
4593 ms179 ms
3690 ms174 ms
3034 ms166 ms
7140 ms158 ms
4232 ms155 ms
6698 ms145 ms
5342 ms140 ms
577 ms136 ms
Analyzing…
running mobile + desktop · ~30s