www.walmart.com

Report from 7/24/2026, 9:32:10 AM https://www.walmart.com
Latest run · lab, cold cache
49
7/24/2026
28-day score · p75 · the standard
49
30 runs
CRR57%latest
SSD73%latest
TC85 toklatest
TTFUT92 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/walmart.com.svg)](https://agentvitals.dev/results?url=https%3A%2F%2Fwww.walmart.com)
<a href="https://agentvitals.dev/results?url=https%3A%2F%2Fwww.walmart.com"><img src="https://agentvitals.dev/badge/walmart.com.svg" alt="Core Agent Vitals" height="20"></a>
What AI tells your customers about youAgent confidence: LOW
Business nameWalmart
CategoryOrganization
Pricenot found
Locationnot found
Hoursnot found
Productsnot found
🟡DescriptionShop Walmart.com today for Every Day Low Prices. Join Walmart+ for unlimited free delivery from your store & free shipping with no order minimum. Start your free 30-day trial now! · 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.

We recovered only a shell of this page (under 200 tokens) — likely a soft bot-block or a client-rendered app that served our scanner almost no content. The metrics below reflect that shell, not your real site; the score is capped until an agent can retrieve real content.
49
Overall score
weighted CAV (0–100)
FAIL
0–4950–8990–100

Metrics

57%
CRR Content Recovery Poor
0.73
SSD Semantic Signal Density Good
85 tok
TC Token Cost Good
34 ms
TTFUT Time to First Useful Token N/A

Token Cost breakdown

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

Content
44.6% · 1,160
Chrome (nav / header / footer)
53.1% · 1,382
Boilerplate (cookie / ad)
0% · 0
Other
2.3% · 61

Final screenshot

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

Diagnostics

high CRR Content is hidden behind JavaScript

pre-JS raw HTML

Evidence43% of content requires JS · 57% 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 55.4% of tokens are non-content (boilerplate/chrome)

agent representation — token decomposition

EvidenceToken decomposition: content 44.6%, chrome 53.1%, boilerplate 0%, other 2.3%. Only 44.6% 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 77/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) Major AI bots allowed Learn →
~ sitemap.xml Sitemap found but no <url>/<loc> entries Learn →
JSON-LD structured data Types: Organization, WebSite Learn →
~ agents.json Absent (emerging standard) Learn →
~ WebMCP endpoint Absent (emerging standard) Learn →
~ OpenAPI / API docs No OpenAPI/Swagger found Learn →

Issues (6)

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

~ No login wall on public content high impact Login signal: /account/login

Business impact Public content behind authentication is unreachable to agents (they have no account). Gate only genuinely private material.

What we measured We follow redirects and detect 401/403 and login-form signals on content pages.

How to fix Separate public marketing/docs from authenticated areas; keep public pages reachable without login.

Spec: https://llmstxt.org

~ XML sitemap present medium impact Sitemap found but no <url>/<loc> entries

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.

Learn how to implement →

# robots.txt
Sitemap: https://example.com/sitemap.xml

Spec: https://www.sitemaps.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)

✓ robots.txt allows AI bots✓ No CAPTCHA wall✓ No content-blocking cookie wall✓ Machine-readable prices✓ Structured data (JSON-LD)✓ 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
✅ 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

highSplit the heaviest unused bundlehighest leverage

_app-6f2b646e54050e55.js — 729 KiB transferred, 67.5% unused (third-party)

EvidenceCDP JS coverage: 492 KiB of this bundle is never executed on load.
Impact~-492 KiB transfer; lower Token Cost + faster agent parse.
Effort30–90 min
FixDynamic-import() the below-the-fold parts of _app-6f2b646e54050e55.js, or drop unused dependencies. It is third-party — lazy-load or remove it.
highCut third-party weight

walmartimages.com — 2377 KiB, 243 requests, 2196 ms main-thread

EvidenceThird-party is 91.5% of total transfer (257 requests); walmartimages.com is the largest.
ImpactFewer bytes + main-thread stalls before your content settles for an agent.
Effort1–3 h
FixLazy-load, self-host, or remove walmartimages.com; defer non-critical third-party scripts.
highBreak up long main-thread tasks

longest task 797 ms (10 total)

EvidenceMain thread blocked 797 ms by the longest task.
ImpactFaster interactivity + content settling.
Effort1–4 h
FixSplit heavy work, defer third-party scripts, move compute off the main thread.
mediumCut total transfer weight

2.7 MB total

Evidence2.7 MB transferred.
ImpactCheaper, faster fetch on slow links.
Effort1–3 h
FixEnable Brotli, serve WebP/AVIF images, defer non-critical resources.

Third-party impact

257 third-party requests · 2497 KiB (91.5% of transfer) · 2326 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
walmartimages.com2432377 KiB2196 ms
fullstory.com7103 KiB130 ms
wal.co212 KiB
px-cloud.net34 KiB
googlesyndication.com11 KiB
criteo.com10 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://i5.walmartimages.com/dfw/63fd9f59-1b51/ccb4d1d0-b19e-442d-9041-24d9c7fdc7ee/v2/en-US/_next/static/chunks/pages/_app-6f2b646e54050e55.js 3P729 KiB67.5%492 KiB
https://www.walmart.com/px/PXu6b0qd2S/init.js151 KiB60.4%91 KiB
https://i5.walmartimages.com/dfw/63fd9f59-1b51/ccb4d1d0-b19e-442d-9041-24d9c7fdc7ee/v2/en-US/_next/static/chunks/75340.cab3770b359abd5c.js 3P54 KiB90.5%49 KiB
https://i5.walmartimages.com/dfw/63fd9f59-1b51/ccb4d1d0-b19e-442d-9041-24d9c7fdc7ee/v2/en-US/_next/static/chunks/25311-2d5bfdb4c5815bac.js 3P49 KiB95.6%47 KiB
https://edge.fullstory.com/s/fs.js 3P80 KiB46.4%37 KiB
https://i5.walmartimages.com/dfw/63fd9f59-1b51/ccb4d1d0-b19e-442d-9041-24d9c7fdc7ee/v2/en-US/_next/static/chunks/17169-5d78b63996886e41.js 3P40 KiB72.3%29 KiB
https://i5.walmartimages.com/dfw/63fd9f59-1b51/ccb4d1d0-b19e-442d-9041-24d9c7fdc7ee/v2/en-US/_next/static/chunks/framework-31d3b826166ff95f.js 3P50 KiB58.3%29 KiB
https://i5.walmartimages.com/dfw/63fd9f59-1b51/ccb4d1d0-b19e-442d-9041-24d9c7fdc7ee/v2/en-US/_next/static/chunks/38813-38b31a57977f72ca.js 3P28 KiB81.8%23 KiB
https://i5.walmartimages.com/dfw/63fd9f59-1b51/ccb4d1d0-b19e-442d-9041-24d9c7fdc7ee/v2/en-US/_next/static/chunks/90342-b747bbed7d0327ee.js 3P24 KiB91.6%22 KiB
https://i5.walmartimages.com/dfw/63fd9f59-1b51/ccb4d1d0-b19e-442d-9041-24d9c7fdc7ee/v2/en-US/_next/static/chunks/85904-38f6212190e32f16.js 3P27 KiB77.3%21 KiB
https://i5.walmartimages.com/dfw/63fd9f59-1b51/ccb4d1d0-b19e-442d-9041-24d9c7fdc7ee/v2/en-US/_next/static/chunks/85239-e78a61b2a0cb890c.js 3P20 KiB93.3%19 KiB
https://i5.walmartimages.com/dfw/63fd9f59-1b51/ccb4d1d0-b19e-442d-9041-24d9c7fdc7ee/v2/en-US/_next/static/chunks/main-92aadb6dbf07734d.js 3P34 KiB53.4%18 KiB
https://i5.walmartimages.com/dfw/63fd9f59-1b51/ccb4d1d0-b19e-442d-9041-24d9c7fdc7ee/v2/en-US/_next/static/chunks/12301-cd61e88d9842e5a1.js 3P18 KiB97.5%17 KiB
https://i5.walmartimages.com/dfw/63fd9f59-1b51/ccb4d1d0-b19e-442d-9041-24d9c7fdc7ee/v2/en-US/_next/static/chunks/52579-b78837711ef95744.js 3P18 KiB88.9%16 KiB
https://i5.walmartimages.com/dfw/63fd9f59-1b51/ccb4d1d0-b19e-442d-9041-24d9c7fdc7ee/v2/en-US/_next/static/chunks/78297.43aa09306d6ca226.js 3P17 KiB88.3%15 KiB

Network

272Requests
2729 KiBTransferred
198Scripts
91.5%3rd-party
10Long tasks
Script (198)
2123 KiB
Other (44)
361 KiB
Document (3)
68 KiB
Stylesheet (1)
67 KiB
Font (3)
62 KiB
Image (7)
29 KiB
XHR (7)
10 KiB
Ping (7)
9 KiB
Fetch (2)
2 KiB
Heaviest requests (30)
URLTypeStatusTransfer
https://i5.walmartimages.com/dfw/63fd9f59-1b51/ccb4d1d0-b19e-442d-9041-24d9c7fdc7ee/v2/en-US/_next/static/chunks/pages/_app-6f2b646e54050e55.jsScript200729 KiB
https://www.walmart.com/px/PXu6b0qd2S/init.jsScript200151 KiB
https://i5.walmartimages.com/dfw/63fd9f59-1b51/ccb4d1d0-b19e-442d-9041-24d9c7fdc7ee/v2/en-US/_next/static/chunks/91966-6b38662af6374b7e.jsOther200138 KiB
https://edge.fullstory.com/s/fs.jsScript20080 KiB
https://www.walmart.com/Document20068 KiB
https://i5.walmartimages.com/dfw/63fd9f59-1b51/ccb4d1d0-b19e-442d-9041-24d9c7fdc7ee/v2/en-US/_next/static/css/11de1852b87521dd.cssStylesheet20067 KiB
https://i5.walmartimages.com/dfw/63fd9f59-1b51/ccb4d1d0-b19e-442d-9041-24d9c7fdc7ee/v2/en-US/_next/static/chunks/75340.cab3770b359abd5c.jsScript20054 KiB
https://i5.walmartimages.com/dfw/63fd9f59-1b51/ccb4d1d0-b19e-442d-9041-24d9c7fdc7ee/v2/en-US/_next/static/chunks/framework-31d3b826166ff95f.jsScript20050 KiB
https://i5.walmartimages.com/dfw/63fd9f59-1b51/ccb4d1d0-b19e-442d-9041-24d9c7fdc7ee/v2/en-US/_next/static/chunks/25311-2d5bfdb4c5815bac.jsScript20049 KiB
https://i5.walmartimages.com/dfw/63fd9f59-1b51/ccb4d1d0-b19e-442d-9041-24d9c7fdc7ee/v2/en-US/_next/static/chunks/17169-5d78b63996886e41.jsScript20040 KiB
https://i5.walmartimages.com/dfw/63fd9f59-1b51/ccb4d1d0-b19e-442d-9041-24d9c7fdc7ee/v2/en-US/_next/static/media/ui-icons.d33e6337.woff2Font20037 KiB
https://i5.walmartimages.com/dfw/63fd9f59-1b51/ccb4d1d0-b19e-442d-9041-24d9c7fdc7ee/v2/en-US/_next/static/chunks/main-92aadb6dbf07734d.jsScript20034 KiB
https://i5.walmartimages.com/dfw/63fd9f59-1b51/ccb4d1d0-b19e-442d-9041-24d9c7fdc7ee/v2/en-US/_next/static/chunks/38813-38b31a57977f72ca.jsScript20028 KiB
https://i5.walmartimages.com/dfw/63fd9f59-1b51/ccb4d1d0-b19e-442d-9041-24d9c7fdc7ee/v2/en-US/_next/static/chunks/webpack-1455181ceb715f98.jsScript20027 KiB
https://i5.walmartimages.com/dfw/63fd9f59-1b51/ccb4d1d0-b19e-442d-9041-24d9c7fdc7ee/v2/en-US/_next/static/chunks/85904-38f6212190e32f16.jsScript20027 KiB
https://i5.walmartimages.com/dfw/63fd9f59-1b51/ccb4d1d0-b19e-442d-9041-24d9c7fdc7ee/v2/en-US/_next/static/chunks/13333-6c3f547a96b3cd48.jsOther20025 KiB
https://i5.walmartimages.com/dfw/63fd9f59-1b51/ccb4d1d0-b19e-442d-9041-24d9c7fdc7ee/v2/en-US/_next/static/chunks/90342-b747bbed7d0327ee.jsScript20024 KiB
https://i5.walmartimages.com/dfw/63fd9f59-1b51/ccb4d1d0-b19e-442d-9041-24d9c7fdc7ee/v2/en-US/_next/static/chunks/8670.0a280698b10189d3.jsScript20021 KiB
https://i5.walmartimages.com/dfw/63fd9f59-1b51/ccb4d1d0-b19e-442d-9041-24d9c7fdc7ee/v2/en-US/_next/static/chunks/85239-e78a61b2a0cb890c.jsScript20020 KiB
https://i5.walmartimages.com/dfw/63fd9f59-1b51/ccb4d1d0-b19e-442d-9041-24d9c7fdc7ee/v2/en-US/_next/static/chunks/12301-cd61e88d9842e5a1.jsScript20018 KiB
https://i5.walmartimages.com/dfw/63fd9f59-1b51/ccb4d1d0-b19e-442d-9041-24d9c7fdc7ee/v2/en-US/_next/static/chunks/52579-b78837711ef95744.jsScript20018 KiB
https://i5.walmartimages.com/dfw/4ff9c6c9-a4ad/k2-_baa5c4e6-fac3-4d09-85a3-7a0375676cd6.v1.jpg?odnHeight=508&odnWidth=276&odnBg=&odnDynImageQuality=70Image20017 KiB
https://i5.walmartimages.com/dfw/63fd9f59-1b51/ccb4d1d0-b19e-442d-9041-24d9c7fdc7ee/v2/en-US/_next/static/chunks/78297.43aa09306d6ca226.jsScript20017 KiB
https://i5.walmartimages.com/dfw/63fd9f59-1b51/ccb4d1d0-b19e-442d-9041-24d9c7fdc7ee/v2/en-US/_next/static/production_20260724T030919986Z-en-US/_buildManifest.jsScript20017 KiB
https://i5.walmartimages.com/dfw/63fd9f59-1b51/ccb4d1d0-b19e-442d-9041-24d9c7fdc7ee/v2/en-US/_next/static/chunks/6979-0e3d1a5cc7998770.jsScript20016 KiB
https://i5.walmartimages.com/dfw/63fd9f59-1b51/ccb4d1d0-b19e-442d-9041-24d9c7fdc7ee/v2/en-US/_next/static/chunks/31522-62745a5996cedd9d.jsScript20016 KiB
https://i5.walmartimages.com/dfw/63fd9f59-1b51/ccb4d1d0-b19e-442d-9041-24d9c7fdc7ee/v2/en-US/_next/static/chunks/14342.1cb859794d2747d3.jsScript20015 KiB
https://edge.fullstory.com/datalayer/v4/latest.jsScript20014 KiB
https://i5.walmartimages.com/dfw/63fd9f59-1b51/ccb4d1d0-b19e-442d-9041-24d9c7fdc7ee/v2/en-US/_next/static/chunks/40097-a3a2085efd2e0d22.jsScript20013 KiB
https://i5.walmartimages.com/dfw/63fd9f59-1b51/ccb4d1d0-b19e-442d-9041-24d9c7fdc7ee/v2/en-US/_next/static/chunks/76802-dbb5463621802c91.jsScript20013 KiB

Long tasks (>50 ms)

StartDuration
1327 ms797 ms
560 ms417 ms
3229 ms323 ms
2837 ms302 ms
2276 ms237 ms
3834 ms224 ms
4863 ms221 ms
2597 ms214 ms
4075 ms182 ms
4642 ms134 ms
Analyzing…
running mobile + desktop · ~30s