apnews.com

Report from 8/10/2026, 9:42:58 AM https://apnews.com
Latest run · lab, cold cache
63
8/10/2026
28-day score · p75 · the standard
64
19 runs
CRR90%latest
SSD68%latest
TC3623 toklatest
TTFUT80 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%2Fapnews.com)
<a href="https://agentvitals.dev/results?url=https%3A%2F%2Fapnews.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.68
SSD Semantic Signal Density Good
3,623 tok
TC Token Cost Good
41 ms
TTFUT Time to First Useful Token N/A

Token Cost breakdown

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

Content
51.4% · 36,584
Chrome (nav / header / footer)
23% · 16,340
Boilerplate (cookie / ad)
1.2% · 857
Other
24.4% · 17,341

Final screenshot

Final screenshot of https://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.6% of tokens are non-content (boilerplate/chrome)

agent representation — token decomposition

EvidenceToken decomposition: content 51.4%, chrome 23%, boilerplate 1.2%, other 24.4%. Only 51.4% 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

473 third-party requests · 6836 KiB (69.3% of transfer) · 1325 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.tech422601 KiB458 ms
pub.network18444 KiB238 ms
gstatic.com5378 KiB
googletagmanager.com2338 KiB67 ms
viafoura.net18312 KiB48 ms
bounceexchange.com13293 KiB39 ms
doubleclick.net14274 KiB158 ms
cookielaw.org12266 KiB
ntv.io1260 KiB34 ms
confiant-integrations.net2240 KiB69 ms
html-load.cc1149 KiB
permutive.app1145 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).

BundleTransferUnusedWasted
https://live.primis.tech/live/liveVideo.php?vpaidManager=sekindo&s=58057&ri=6C69766553746174737C736B317B54307D7B64323032362D30382D30395F31327D7B7331373237323837387D7B4333317D7B53595842755A58647A4C6D4E7662513D3D7D7B626368726F6D657D7B716465736B746F707D7B583634307D7B593434307D7B66317D7B4C32313735387DFEFE&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=1786268622&csuuid=6a784bcdf3e70&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 3P571 KiB56.9%325 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 3P353 KiB69.6%246 KiB
https://s.ntv.io/serve/load.js 3P260 KiB82.7%215 KiB
https://a.pub.network/apnews-com/pubfig.engine.js 3P200 KiB58.5%117 KiB
https://securepubads.g.doubleclick.net/pagead/managed/js/gpt/m202607310101/pubads_impl.js?cb=122880150 3P199 KiB56.6%113 KiB
https://html-load.cc/script/YXBuZXdzLmNvbQ.js 3P149 KiB72%107 KiB
https://cdn.viafoura.net/vf-v2.js 3P188 KiB55.7%105 KiB
https://assets.apnews.com/resource/00000188-2a81-d28a-a1fd-7bfb6ccb0000/styles/default/All.min.ebf1c29b90335b2992e30e33c5fe91d0.gz.js122 KiB86%105 KiB
https://cdn.confiant-integrations.net/gptprebidnativevideo/202607281755/wrap.js 3P169 KiB61.2%104 KiB
https://a.pub.network/apnews-com/prebid.js 3P195 KiB52.4%102 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=4e6860h2 3P156 KiB49.9%78 KiB
https://assets.bounceexchange.com/assets/smart-tag/versioned/main-v2_df107a43a42bb70f1bbb1c11ba7a397a.br.js 3P117 KiB65.1%76 KiB

Network

536Requests
9870 KiBTransferred
113Scripts
69.3%3rd-party
10Long tasks
Script (113)
5233 KiB
Image (101)
1921 KiB
XHR (46)
1407 KiB
Font (13)
675 KiB
Fetch (161)
261 KiB
Document (64)
169 KiB
Stylesheet (14)
155 KiB
Other (20)
46 KiB
Manifest (1)
2 KiB
Ping (3)
1 KiB
Heaviest requests (30)
URLTypeStatusTransfer
https://live.primis.tech/live/liveVideo.php?vpaidManager=sekindo&s=58057&ri=6C69766553746174737C736B317B54307D7B64323032362D30382D30395F31327D7B7331373237323837387D7B4333317D7B53595842755A58647A4C6D4E7662513D3D7D7B626368726F6D657D7B716465736B746F707D7B583634307D7B593434307D7B66317D7B4C32313735387DFEFE&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=1786268622&csuuid=6a784bcdf3e70&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=0Script200571 KiB
https://live.primis.tech/content/prebid/prebidVid.10.23.23.min.jsScript200353 KiB
https://video.primis.tech/uploads/cn1/video/users/hls/31784/video_6a67907ab85f2127399280/vid6a7807b3bfe0c617399708.mp4/w_1280_00000.tsXHR200350 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/vid6a7807b3bfe0c617399708.mp4/w_1280_00001.tsXHR200332 KiB
https://video.primis.tech/uploads/cn1/video/users/hls/31784/video_6a67907ab85f2127399280/vid6a7807b2bf071825468375.mp4/w_1280_00000.tsXHR200272 KiB
https://s.ntv.io/serve/load.jsScript200260 KiB
https://video.primis.tech/uploads/cn1/video/users/hls/31784/video_6a67907ab85f2127399280/vid6a7807b2bf071825468375.mp4/w_1280_00001.tsXHR200260 KiB
https://dims.apnews.com/dims4/default/8a93ccd/2147483647/strip/true/crop/4032x2687+0+169/resize/980x653!/quality/90/?url=https%3A%2F%2Fassets.apnews.com%2F3e%2Fc3%2Fae7b5b9b712b09a7c57b3d194e22%2F24042cc3a0864e62a07a5de8603c2c01Image200223 KiB
https://dims.apnews.com/dims4/default/f8d29bc/2147483647/strip/true/crop/6519x4346+0+0/resize/1440x960!/format/webp/quality/90/?url=https%3A%2F%2Fassets.apnews.com%2F78%2F51%2F14d19cdc4167b754bf53fcc2908a%2F44fb6c8b17254cb5aab0c8d3e48d368b.jpgImage200213 KiB
https://a.pub.network/apnews-com/pubfig.engine.jsScript200200 KiB
https://securepubads.g.doubleclick.net/pagead/managed/js/gpt/m202607310101/pubads_impl.js?cb=122880150Script200199 KiB
https://a.pub.network/apnews-com/prebid.jsScript200195 KiB
https://cdn.viafoura.net/vf-v2.jsScript200188 KiB
https://www.googletagmanager.com/gtm.js?id=GTM-KT7RHVGScript200183 KiB
https://dims.apnews.com/dims4/default/f8e06df/2147483647/strip/true/crop/4032x3024+0+0/resize/907x680!/format/webp/quality/90/?url=https%3A%2F%2Fassets.apnews.com%2F3e%2Fc3%2Fae7b5b9b712b09a7c57b3d194e22%2F24042cc3a0864e62a07a5de8603c2c01Image200172 KiB
https://apnews.com/Document200169 KiB
https://cdn.confiant-integrations.net/gptprebidnativevideo/202607281755/wrap.jsScript200169 KiB
https://dims.apnews.com/dims4/default/bacd0e6/2147483647/strip/true/crop/8640x5760+0+0/resize/1020x680!/format/webp/quality/90/?url=https%3A%2F%2Fassets.apnews.com%2Fd6%2F65%2F65c37ac7bc4981736d529a6c5755%2Fc10f12addcb940e2b6dad917cfb44ad8Image200169 KiB
https://www.googletagmanager.com/gtag/js?id=G-CW1LS0SXPK&cx=c&gtm=4e6860h2Script200156 KiB
https://html-load.cc/script/YXBuZXdzLmNvbQ.jsScript200149 KiB
https://dims.apnews.com/dims4/default/c51e2a7/2147483647/strip/false/crop/5767x3845+0+0/resize/1360x907!/quality/90/?url=https%3A%2F%2Fassets.apnews.com%2F1b%2Fb8%2F73c25ffb4efea8d3354cc244d6da%2Fe3495764744947e6bd65eeafda0752dbImage200147 KiB
https://dims.apnews.com/dims4/default/5fe6775/2147483647/strip/true/crop/3866x2577+0+0/resize/1440x960!/format/webp/quality/90/?url=https%3A%2F%2Fassets.apnews.com%2F8d%2Fb8%2Fec2408eccad58caf473308433354%2Fded827b4eff949058292c563a4093a7cImage200146 KiB
https://507b28fb-2ef1-4c34-8bda-ba32030bb199.edge.permutive.app/507b28fb-2ef1-4c34-8bda-ba32030bb199-web.jsScript200145 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://dims.apnews.com/dims4/default/f5e5df0/2147483647/strip/true/crop/6762x4508+0+0/resize/1020x680!/format/webp/quality/90/?url=https%3A%2F%2Fassets.apnews.com%2F92%2F40%2F672c6da42adf289332eaa013467d%2F54b31412b20248baa81a6c8ecce9bd72Image200138 KiB
https://cdn.cookielaw.org/scripttemplates/202604.2.0/otBannerSdk.jsScript200136 KiB
https://dims.apnews.com/dims4/default/84b396a/2147483647/strip/true/crop/2581x1720+25+0/resize/980x653!/quality/90/?url=https%3A%2F%2Fassets.apnews.com%2Fc6%2F6e%2F3d44db0adc84af8b56abc8a6bc81%2F8bd20a1105364713a64b9279525bfc9dImage200126 KiB
https://assets.apnews.com/resource/00000188-2a81-d28a-a1fd-7bfb6ccb0000/styles/default/All.min.ebf1c29b90335b2992e30e33c5fe91d0.gz.jsScript200122 KiB

Long tasks (>50 ms)

StartDuration
2529 ms175 ms
527 ms125 ms
4118 ms91 ms
1092 ms87 ms
1418 ms83 ms
2004 ms75 ms
5238 ms75 ms
736 ms69 ms
2768 ms60 ms
2276 ms54 ms
Analyzing…
running mobile + desktop · ~30s