www.europa.eu

Report from 7/24/2026, 12:34:19 PM https://www.europa.eu
Latest run · lab, cold cache
34
7/24/2026
28-day score · p75 · the standard
34
12 runs
CRR1%latest
SSD70%latest
TC443 toklatest
TTFUT676 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/europa.eu.svg)](https://agentvitals.dev/results?url=https%3A%2F%2Fwww.europa.eu)
<a href="https://agentvitals.dev/results?url=https%3A%2F%2Fwww.europa.eu"><img src="https://agentvitals.dev/badge/europa.eu.svg" alt="Core Agent Vitals" height="20"></a>
What AI tells your customers about youAgent confidence: LOW
🟡Business nameEuropean Union · guessed from page text (no structured data)
Categorynot found
Pricenot applicable · not applicable to this page type
Locationnot applicable · not applicable to this page type
Hoursnot applicable · not applicable to this page type
Productsnot applicable · not applicable to this page type
🟡DescriptionDiscover how the EU functions, its principles, priorities; find out about its history and member states; learn about its legal basis and your EU rights. · guessed from page text (no structured data)

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

34
Overall score
weighted CAV (0–100)
FAIL
0–4950–8990–100

Metrics

1%
CRR Content Recovery Poor
0.70
SSD Semantic Signal Density Good
443 tok
TC Token Cost Good
662 ms
TTFUT Time to First Useful Token N/A

Token Cost breakdown

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

Content
30.6% · 1,139
Chrome (nav / header / footer)
54.5% · 2,031
Boilerplate (cookie / ad)
1.6% · 59
Other
13.3% · 496

Final screenshot

Final screenshot of https://www.europa.eu

Diagnostics

high CRR Content is hidden behind JavaScript

pre-JS raw HTML

Evidence99% of content requires JS · 1% 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.

high TC 69.4% of tokens are non-content (boilerplate/chrome)

agent representation — token decomposition

EvidenceToken decomposition: content 30.6%, chrome 54.5%, boilerplate 1.6%, other 13.3%. Only 30.599999999999994% 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 61/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 No /sitemap.xml Learn →
JSON-LD structured data No JSON-LD found Learn →
~ agents.json Absent (emerging standard) Learn →
~ WebMCP endpoint Absent (emerging standard) Learn →
~ OpenAPI / API docs No OpenAPI/Swagger found Learn →

Issues (7)

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

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.

Learn how to implement →

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

Learn how to implement →

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

Spec: https://www.sitemaps.org/

~ Server response (TTFB) low impact 1020ms (good ≤800, warn ≤1800)

Business impact Slow servers cause agents to time out and move on. Fast response keeps you in the running.

What we measured We time the response (time-to-first-byte) against good (<800ms) / warn (<1800ms) thresholds.

How to fix Use a CDN, caching and an optimized origin to get TTFB under 800ms.

Spec: https://web.dev/ttfb/

~ 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 (4)

✓ robots.txt allows AI bots✓ No CAPTCHA wall✓ No content-blocking cookie wall✓ No login wall on public content

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.

70Transport posture (0–100, unscored)
3pass
1warn
1fail
Per-header findings (6)
HeaderEvidence
✅ HTTPSserved over HTTPS
✅ HSTSmax-age=31536000; includeSubDomains; preload;
❌ Content-Security-Policyno content-security-policy header
✅ X-Content-Type-Optionsnosniff
⚠️ 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

mediumSplit the heaviest unused bundle

js_z8oUnLU2E9HM0CMrcsGP6jG8A5Now14HbdoG-l_cU8U.js — 92 KiB transferred, 85.6% unused

EvidenceCDP JS coverage: 79 KiB of this bundle is never executed on load.
Impact~-79 KiB transfer; lower Token Cost + faster agent parse.
Effort30–90 min
FixDynamic-import() the below-the-fold parts of js_z8oUnLU2E9HM0CMrcsGP6jG8A5Now14HbdoG-l_cU8U.js, or drop unused dependencies.

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://european-union.europa.eu/sites/default/files/js/js_z8oUnLU2E9HM0CMrcsGP6jG8A5Now14HbdoG-l_cU8U.js?scope=footer&delta=3&language=en&theme=ewcms_theme&include=eJyVjdEOgzAIRX_IrZ9EsBIloWAo1bmvnzNdlj3uDc49F2jPpcJizk_TQIFC2hLm4I0gHFkGupTSJFhY54aSOsK8sF6aVsFg079kUAM5__RSLFQoUYbafKPjl14zKsoRnOtg1INsZTUljfPS6OgHUPum9AjyswR1m990pzHMpKbJ24py_-y3WtBDDCfyF6mcboQ92 KiB85.6%79 KiB
https://www.webanalytics.europa.eu/ppms.js?t=5b89250227 KiB69.9%19 KiB
https://webtools.europa.eu/js/webtools.etrans.js?t=5b89250229 KiB32.4%10 KiB
https://ec.europa.eu/wel/surveys/wr_survey03/js/main.js?9913197 KiB63.6%4 KiB
https://cdn.eaec.fpfis.tech.ec.europa.eu/eas.js?t=5b8925026 KiB72.2%4 KiB
https://european-union.europa.eu/sites/default/files/js/js_Q0yY91mA1D3YT8YnhvM_9YBxvUP13wxsq50njOmOxNY.js?scope=footer&delta=1&language=en&theme=ewcms_theme&include=eJyVjdEOgzAIRX_IrZ9EsBIloWAo1bmvnzNdlj3uDc49F2jPpcJizk_TQIFC2hLm4I0gHFkGupTSJFhY54aSOsK8sF6aVsFg079kUAM5__RSLFQoUYbafKPjl14zKsoRnOtg1INsZTUljfPS6OgHUPum9AjyswR1m990pzHMpKbJ24py_-y3WtBDDCfyF6mcboQ5 KiB69.4%3 KiB
https://webtools.europa.eu/js/webtools.search.2.0.js?t=5b89250215 KiB19.4%3 KiB
https://webtools.europa.eu/js/webtools.preview.js?t=5b8925022 KiB54.6%1 KiB
https://webtools.europa.eu/js/webtools.globan.js?t=5b89250210 KiB10.7%1 KiB
https://webtools.europa.eu/js/webtools.cck.js?t=5b8925027 KiB8.1%1 KiB

Network

68Requests
1086 KiBTransferred
26Scripts
0%3rd-party
0Long tasks
Image (12)
435 KiB
Script (26)
386 KiB
Stylesheet (21)
237 KiB
Document (2)
22 KiB
Other (4)
6 KiB
XHR (2)
1 KiB
Ping (1)
0 KiB
Heaviest requests (30)
URLTypeStatusTransfer
https://european-union.europa.eu/sites/default/files/styles/oe_theme_extra_extra_large_5_1_banner/public/2025-11/test%20homepage%20banner%20two%20kids.png.webp?h=bc48d4ba&itok=zdvcvc_DImage200117 KiB
https://european-union.europa.eu/sites/default/files/js/js_z8oUnLU2E9HM0CMrcsGP6jG8A5Now14HbdoG-l_cU8U.js?scope=footer&delta=3&language=en&theme=ewcms_theme&include=eJxVy9EOgjAMheEXQnmkpoyTOdOtpO1A3l5BjfGu5_tTbKk61S5RpLTcWUacdHcSPiCDGrJG4SjahneNGypGJPJuK_Z_PW9uLHuU5IPiE5LWRRtakJTJ2HZC_1U8AvZ6Il_zoRumUBUfZ-sLy_W7L17ZQpRn2BOXg0xXScript20092 KiB
https://european-union.europa.eu/sites/default/files/js/js_z8oUnLU2E9HM0CMrcsGP6jG8A5Now14HbdoG-l_cU8U.js?scope=footer&delta=3&language=en&theme=ewcms_theme&include=eJyVjdEOgzAIRX_IrZ9EsBIloWAo1bmvnzNdlj3uDc49F2jPpcJizk_TQIFC2hLm4I0gHFkGupTSJFhY54aSOsK8sF6aVsFg079kUAM5__RSLFQoUYbafKPjl14zKsoRnOtg1INsZTUljfPS6OgHUPum9AjyswR1m990pzHMpKbJ24py_-y3WtBDDCfyF6mcboQScript20092 KiB
https://european-union.europa.eu/sites/default/files/styles/oe_theme_ratio_3_2_medium/public/2024-08/institutions-and-bodies_2.jpg?h=ef1d7280&itok=2RLMaHRuImage20072 KiB
https://european-union.europa.eu/sites/default/files/styles/oe_theme_ratio_3_2_medium/public/2024-08/EU-countries_2_0.jpg?h=ef1d7280&itok=lX38Wkb9Image20068 KiB
https://european-union.europa.eu/sites/default/files/styles/oe_theme_ratio_3_2_medium/public/2026-07/Venezuela%20earthquake.jpeg?h=613550ff&itok=_aVpWYP-Image20057 KiB
https://european-union.europa.eu/sites/default/files/css/css_K3VXKueEMVw366P5ae96pX4jho_IOHcPkSx6oZeP0ik.css?delta=3&language=en&theme=ewcms_theme&include=eJzLT40vyUjNTdVPzs8tyM9LzSuJz8lMKkosqoxPLdXJh8kWFGXmlegUVxaXpObqJyUWpwIAfvYWPwStylesheet20052 KiB
https://european-union.europa.eu/sites/default/files/css/css_K3VXKueEMVw366P5ae96pX4jho_IOHcPkSx6oZeP0ik.css?delta=3&language=en&theme=ewcms_theme&include=eJxFyUsKwCAMBcALiR5JYn1UQU3IZ9Hbd1W6nWFUH9goF2_hg-N1zaakT0Uk_lZ0Hk9CSreSDCtdQ2jlX3IcibamDfRkjzl2aWR4AWN5JnMStylesheet20052 KiB
https://european-union.europa.eu/sites/default/files/styles/oe_theme_ratio_3_2_medium/public/2026-07/Energy-package_card.jpg?h=c3635fa2&itok=40fyyp2wImage20052 KiB
https://webtools.europa.eu/load.jsScript20043 KiB
https://european-union.europa.eu/sites/default/files/styles/oe_theme_ratio_3_2_medium/public/2024-08/History-of-the-EU_2.jpg?h=ef1d7280&itok=rL-4B_V1Image20038 KiB
https://webtools.europa.eu/js/webtools.etrans.js?t=5b892502Script20029 KiB
https://european-union.europa.eu/core/assets/vendor/jquery/jquery.min.js?v=4.0.0Script20027 KiB
https://www.webanalytics.europa.eu/ppms.js?t=5b892502Script20027 KiB
https://european-union.europa.eu/sites/default/files/css/css_2XftOovIrSzI2rmcSArnprMWglh7tlxhDVF4NMyhQdQ.css?delta=4&language=en&theme=ewcms_theme&include=eJzLT40vyUjNTdVPzs8tyM9LzSuJz8lMKkosqoxPLdXJh8kWFGXmlegUVxaXpObqJyUWpwIAfvYWPwStylesheet20026 KiB
https://european-union.europa.eu/sites/default/files/css/css_2XftOovIrSzI2rmcSArnprMWglh7tlxhDVF4NMyhQdQ.css?delta=4&language=en&theme=ewcms_theme&include=eJxFyUsKwCAMBcALiR5JYn1UQU3IZ9Hbd1W6nWFUH9goF2_hg-N1zaakT0Uk_lZ0Hk9CSreSDCtdQ2jlX3IcibamDfRkjzl2aWR4AWN5JnMStylesheet20026 KiB
https://european-union.europa.eu/sites/default/files/styles/oe_theme_ratio_3_2_medium/avportal/P-034479/00-11.jpg?itok=urtvBTCcImage20023 KiB
https://webtools.europa.eu/css/webtools.theme-eu.css?t=5b892502Stylesheet20018 KiB
https://european-union.europa.eu/index_enDocument20018 KiB
https://webtools.europa.eu/css/webtools.icons.default.css?t=5b892502Stylesheet20015 KiB
https://webtools.europa.eu/js/webtools.search.2.0.js?t=5b892502Script20015 KiB
https://ec.europa.eu/wel/surveys/wr_survey03/data/invitation_settings/eu_online_survey/01/invitation_settings.js?991319v0.63Script20011 KiB
https://webtools.europa.eu/js/webtools.globan.js?t=5b892502Script20010 KiB
https://european-union.europa.eu/sites/default/files/css/css_8R9KPOHEi0xCyr_xLzIhRg38qCFypET5nkRQSncTmWA.css?delta=1&language=en&theme=ewcms_theme&include=eJzLT40vyUjNTdVPzs8tyM9LzSuJz8lMKkosqoxPLdXJh8kWFGXmlegUVxaXpObqJyUWpwIAfvYWPwStylesheet2009 KiB
https://european-union.europa.eu/sites/default/files/css/css_8R9KPOHEi0xCyr_xLzIhRg38qCFypET5nkRQSncTmWA.css?delta=1&language=en&theme=ewcms_theme&include=eJxFyUsKwCAMBcALiR5JYn1UQU3IZ9Hbd1W6nWFUH9goF2_hg-N1zaakT0Uk_lZ0Hk9CSreSDCtdQ2jlX3IcibamDfRkjzl2aWR4AWN5JnMStylesheet2009 KiB
https://ec.europa.eu/wel/surveys/wr_survey03/js/main.js?991319Script2007 KiB
https://webtools.europa.eu/js/webtools.cck.js?t=5b892502Script2007 KiB
https://european-union.europa.eu/themes/contrib/oe_theme/dist/eu/images/logo/standard-version/positive/logo-eu--en.svgImage2006 KiB
https://cdn.eaec.fpfis.tech.ec.europa.eu/eas.js?t=5b892502Script2006 KiB
https://european-union.europa.eu/sites/default/files/css/css_SFTLGwJjREXhxUBrjnha69OOOVUH_v1TlwtRpbHFc38.css?delta=2&language=en&theme=ewcms_theme&include=eJxFyUsKwCAMBcALiR5JYn1UQU3IZ9Hbd1W6nWFUH9goF2_hg-N1zaakT0Uk_lZ0Hk9CSreSDCtdQ2jlX3IcibamDfRkjzl2aWR4AWN5JnMStylesheet2006 KiB
Analyzing…
running mobile + desktop · ~30s